File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,11 @@ class ZstdCodec(BytesBytesCodec):
45
45
def __init__ (self , * , level : int = 0 , checksum : bool = False ) -> None :
46
46
# numcodecs 0.13.0 introduces the checksum attribute for the zstd codec
47
47
_numcodecs_version = Version (numcodecs .__version__ )
48
- if _numcodecs_version < Version ("0.13.0" ):
49
- raise RuntimeError (
50
- "numcodecs version >= 0.13.0 is required to use the zstd codec. "
51
- f"Version { _numcodecs_version } is currently installed."
52
- )
48
+ # if _numcodecs_version < Version("0.13.0"):
49
+ # raise RuntimeError(
50
+ # "numcodecs version >= 0.13.0 is required to use the zstd codec. "
51
+ # f"Version {_numcodecs_version} is currently installed."
52
+ # )
53
53
54
54
level_parsed = parse_zstd_level (level )
55
55
checksum_parsed = parse_checksum (checksum )
You can’t perform that action at this time.
0 commit comments