We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c40a8 commit b8455aeCopy full SHA for b8455ae
numcodecs/pcodec.py
@@ -88,8 +88,6 @@ def _get_chunk_config(self):
88
delta_spec = DeltaSpec.auto()
89
case "none":
90
delta_spec = DeltaSpec.none()
91
- case "try_consecutive":
92
- delta_spec = DeltaSpec.try_consecutive(self.delta_encoding_order)
93
case "try_lookback":
94
delta_spec = DeltaSpec.try_lookback()
95
case _:
numcodecs/tests/test_zarr3.py
@@ -36,7 +36,7 @@
36
37
@pytest.fixture
38
def store() -> StorePath:
39
- return StorePath(MemoryStore(mode="w"))
+ return StorePath(MemoryStore())
40
41
42
ALL_CODECS = [getattr(numcodecs.zarr3, cls_name) for cls_name in numcodecs.zarr3.__all__]
0 commit comments