numcodecs 0.14.1__cp313-cp313-macosx_11_0_arm64.whl → 0.15.0__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of numcodecs might be problematic. Click here for more details.
- numcodecs/__init__.py +43 -46
- numcodecs/_shuffle.cpython-313-darwin.so +0 -0
- numcodecs/abc.py +1 -1
- numcodecs/astype.py +2 -6
- numcodecs/base64.py +1 -2
- numcodecs/blosc.cpython-313-darwin.so +0 -0
- numcodecs/categorize.py +7 -10
- numcodecs/compat_ext.cpython-313-darwin.so +0 -0
- numcodecs/delta.py +3 -10
- numcodecs/fixedscaleoffset.py +8 -10
- numcodecs/fletcher32.cpython-313-darwin.so +0 -0
- numcodecs/gzip.py +1 -3
- numcodecs/jenkins.cpython-313-darwin.so +0 -0
- numcodecs/json.py +11 -11
- numcodecs/lz4.cpython-313-darwin.so +0 -0
- numcodecs/lzma.py +1 -1
- numcodecs/msgpacks.py +6 -6
- numcodecs/ndarray_like.py +2 -2
- numcodecs/pcodec.py +59 -29
- numcodecs/pickles.py +1 -1
- numcodecs/quantize.py +7 -9
- numcodecs/registry.py +1 -1
- numcodecs/tests/common.py +3 -4
- numcodecs/tests/test_blosc.py +9 -11
- numcodecs/tests/test_lzma.py +1 -1
- numcodecs/tests/test_pcodec.py +18 -8
- numcodecs/tests/test_registry.py +2 -2
- numcodecs/tests/test_shuffle.py +2 -4
- numcodecs/tests/test_vlen_bytes.py +3 -0
- numcodecs/tests/test_zarr3.py +65 -37
- numcodecs/version.py +2 -2
- numcodecs/vlen.cpython-313-darwin.so +0 -0
- numcodecs/zarr3.py +44 -22
- numcodecs/zfpy.py +1 -1
- numcodecs/zstd.cpython-313-darwin.so +0 -0
- {numcodecs-0.14.1.dist-info → numcodecs-0.15.0.dist-info}/METADATA +4 -4
- numcodecs-0.15.0.dist-info/RECORD +78 -0
- {numcodecs-0.14.1.dist-info → numcodecs-0.15.0.dist-info}/WHEEL +1 -1
- numcodecs-0.14.1.dist-info/RECORD +0 -78
- {numcodecs-0.14.1.dist-info → numcodecs-0.15.0.dist-info}/LICENSE.txt +0 -0
- {numcodecs-0.14.1.dist-info → numcodecs-0.15.0.dist-info}/entry_points.txt +0 -0
- {numcodecs-0.14.1.dist-info → numcodecs-0.15.0.dist-info}/top_level.txt +0 -0
numcodecs/tests/test_pcodec.py
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import numpy as np
|
|
2
2
|
import pytest
|
|
3
3
|
|
|
4
|
-
from numcodecs.pcodec import PCodec
|
|
5
|
-
|
|
6
4
|
try:
|
|
7
|
-
|
|
8
|
-
PCodec()
|
|
5
|
+
from numcodecs.pcodec import PCodec
|
|
9
6
|
except ImportError: # pragma: no cover
|
|
10
7
|
pytest.skip("pcodec not available", allow_module_level=True)
|
|
11
8
|
|
|
@@ -23,8 +20,12 @@ codecs = [
|
|
|
23
20
|
PCodec(level=1),
|
|
24
21
|
PCodec(level=5),
|
|
25
22
|
PCodec(level=9),
|
|
26
|
-
PCodec(mode_spec=
|
|
23
|
+
PCodec(mode_spec="classic"),
|
|
27
24
|
PCodec(equal_pages_up_to=300),
|
|
25
|
+
PCodec(delta_encoding_order=2),
|
|
26
|
+
PCodec(delta_spec="try_lookback"),
|
|
27
|
+
PCodec(delta_spec="none"),
|
|
28
|
+
PCodec(delta_spec="try_consecutive", delta_encoding_order=1),
|
|
28
29
|
]
|
|
29
30
|
|
|
30
31
|
|
|
@@ -56,15 +57,24 @@ def test_config():
|
|
|
56
57
|
check_config(codec)
|
|
57
58
|
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
@pytest.mark.parametrize("param", ["mode_spec", "delta_spec", "paging_spec"])
|
|
61
|
+
def test_invalid_config_error(param):
|
|
62
|
+
codec = PCodec(**{param: "bogus"})
|
|
63
|
+
with pytest.raises(ValueError):
|
|
64
|
+
check_encode_decode_array_to_bytes(arrays[0], codec)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def test_invalid_delta_encoding_combo():
|
|
68
|
+
codec = PCodec(delta_encoding_order=2, delta_spec="none")
|
|
61
69
|
with pytest.raises(ValueError):
|
|
62
70
|
check_encode_decode_array_to_bytes(arrays[0], codec)
|
|
63
71
|
|
|
64
72
|
|
|
65
73
|
def test_repr():
|
|
66
74
|
check_repr(
|
|
67
|
-
"PCodec(delta_encoding_order=None,
|
|
75
|
+
"PCodec(delta_encoding_order=None, delta_spec='auto',"
|
|
76
|
+
" equal_pages_up_to=262144, level=3, mode_spec='auto',"
|
|
77
|
+
" paging_spec='equal_pages_up_to')"
|
|
68
78
|
)
|
|
69
79
|
|
|
70
80
|
|
numcodecs/tests/test_registry.py
CHANGED
|
@@ -26,7 +26,7 @@ def test_all_classes_registered():
|
|
|
26
26
|
|
|
27
27
|
see #346 for more info
|
|
28
28
|
"""
|
|
29
|
-
missing =
|
|
29
|
+
missing = {
|
|
30
30
|
obj.codec_id
|
|
31
31
|
for _, submod in inspect.getmembers(numcodecs, inspect.ismodule)
|
|
32
32
|
for _, obj in inspect.getmembers(submod)
|
|
@@ -36,7 +36,7 @@ def test_all_classes_registered():
|
|
|
36
36
|
and obj.codec_id not in numcodecs.registry.codec_registry
|
|
37
37
|
and obj.codec_id is not None # remove `None`
|
|
38
38
|
)
|
|
39
|
-
|
|
39
|
+
}
|
|
40
40
|
|
|
41
41
|
if missing:
|
|
42
42
|
raise Exception(f"these codecs are missing: {missing}") # pragma: no cover
|
numcodecs/tests/test_shuffle.py
CHANGED
|
@@ -79,14 +79,12 @@ def test_eq():
|
|
|
79
79
|
|
|
80
80
|
def _encode_worker(data):
|
|
81
81
|
compressor = Shuffle()
|
|
82
|
-
|
|
83
|
-
return enc
|
|
82
|
+
return compressor.encode(data)
|
|
84
83
|
|
|
85
84
|
|
|
86
85
|
def _decode_worker(enc):
|
|
87
86
|
compressor = Shuffle()
|
|
88
|
-
|
|
89
|
-
return data
|
|
87
|
+
return compressor.decode(enc)
|
|
90
88
|
|
|
91
89
|
|
|
92
90
|
@pytest.mark.parametrize('pool', [Pool, ThreadPool])
|
|
@@ -84,6 +84,9 @@ def test_decode_errors():
|
|
|
84
84
|
codec.decode(enc, out=np.zeros(10, dtype='i4'))
|
|
85
85
|
|
|
86
86
|
|
|
87
|
+
# TODO: fix this test on GitHub actions somehow...
|
|
88
|
+
# See https://github.com/zarr-developers/numcodecs/issues/683
|
|
89
|
+
@pytest.mark.skip("Test is failing on GitHub actions.")
|
|
87
90
|
def test_encode_none():
|
|
88
91
|
a = np.array([b'foo', None, b'bar'], dtype=object)
|
|
89
92
|
codec = VLenBytes()
|
numcodecs/tests/test_zarr3.py
CHANGED
|
@@ -66,17 +66,19 @@ def test_docstring(codec_class: type[numcodecs.zarr3._NumcodecsCodec]):
|
|
|
66
66
|
numcodecs.zarr3.Shuffle,
|
|
67
67
|
],
|
|
68
68
|
)
|
|
69
|
-
def
|
|
69
|
+
def test_generic_compressor(
|
|
70
|
+
store: StorePath, codec_class: type[numcodecs.zarr3._NumcodecsBytesBytesCodec]
|
|
71
|
+
):
|
|
70
72
|
data = np.arange(0, 256, dtype="uint16").reshape((16, 16))
|
|
71
73
|
|
|
72
74
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
73
|
-
a =
|
|
75
|
+
a = zarr.create_array(
|
|
74
76
|
store / "generic",
|
|
75
77
|
shape=data.shape,
|
|
76
|
-
|
|
78
|
+
chunks=(16, 16),
|
|
77
79
|
dtype=data.dtype,
|
|
78
80
|
fill_value=0,
|
|
79
|
-
|
|
81
|
+
compressors=[codec_class()],
|
|
80
82
|
)
|
|
81
83
|
|
|
82
84
|
a[:, :] = data.copy()
|
|
@@ -100,26 +102,25 @@ def test_generic_codec_class(store: StorePath, codec_class: type[numcodecs.zarr3
|
|
|
100
102
|
)
|
|
101
103
|
def test_generic_filter(
|
|
102
104
|
store: StorePath,
|
|
103
|
-
codec_class: type[numcodecs.zarr3.
|
|
105
|
+
codec_class: type[numcodecs.zarr3._NumcodecsArrayArrayCodec],
|
|
104
106
|
codec_config: dict[str, JSON],
|
|
105
107
|
):
|
|
106
108
|
data = np.linspace(0, 10, 256, dtype="float32").reshape((16, 16))
|
|
107
109
|
|
|
108
110
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
109
|
-
a =
|
|
111
|
+
a = zarr.create_array(
|
|
110
112
|
store / "generic",
|
|
111
113
|
shape=data.shape,
|
|
112
|
-
|
|
114
|
+
chunks=(16, 16),
|
|
113
115
|
dtype=data.dtype,
|
|
114
116
|
fill_value=0,
|
|
115
|
-
|
|
117
|
+
filters=[
|
|
116
118
|
codec_class(**codec_config),
|
|
117
|
-
BytesCodec(),
|
|
118
119
|
],
|
|
119
120
|
)
|
|
120
121
|
|
|
121
122
|
a[:, :] = data.copy()
|
|
122
|
-
a =
|
|
123
|
+
a = zarr.open_array(store / "generic", mode="r")
|
|
123
124
|
np.testing.assert_array_equal(data, a[:, :])
|
|
124
125
|
|
|
125
126
|
|
|
@@ -127,17 +128,17 @@ def test_generic_filter_bitround(store: StorePath):
|
|
|
127
128
|
data = np.linspace(0, 1, 256, dtype="float32").reshape((16, 16))
|
|
128
129
|
|
|
129
130
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
130
|
-
a =
|
|
131
|
+
a = zarr.create_array(
|
|
131
132
|
store / "generic_bitround",
|
|
132
133
|
shape=data.shape,
|
|
133
|
-
|
|
134
|
+
chunks=(16, 16),
|
|
134
135
|
dtype=data.dtype,
|
|
135
136
|
fill_value=0,
|
|
136
|
-
|
|
137
|
+
filters=[numcodecs.zarr3.BitRound(keepbits=3)],
|
|
137
138
|
)
|
|
138
139
|
|
|
139
140
|
a[:, :] = data.copy()
|
|
140
|
-
a =
|
|
141
|
+
a = zarr.open_array(store / "generic_bitround", mode="r")
|
|
141
142
|
assert np.allclose(data, a[:, :], atol=0.1)
|
|
142
143
|
|
|
143
144
|
|
|
@@ -145,17 +146,17 @@ def test_generic_filter_quantize(store: StorePath):
|
|
|
145
146
|
data = np.linspace(0, 10, 256, dtype="float32").reshape((16, 16))
|
|
146
147
|
|
|
147
148
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
148
|
-
a =
|
|
149
|
+
a = zarr.create_array(
|
|
149
150
|
store / "generic_quantize",
|
|
150
151
|
shape=data.shape,
|
|
151
|
-
|
|
152
|
+
chunks=(16, 16),
|
|
152
153
|
dtype=data.dtype,
|
|
153
154
|
fill_value=0,
|
|
154
|
-
|
|
155
|
+
filters=[numcodecs.zarr3.Quantize(digits=3)],
|
|
155
156
|
)
|
|
156
157
|
|
|
157
158
|
a[:, :] = data.copy()
|
|
158
|
-
a =
|
|
159
|
+
a = zarr.open_array(store / "generic_quantize", mode="r")
|
|
159
160
|
assert np.allclose(data, a[:, :], atol=0.001)
|
|
160
161
|
|
|
161
162
|
|
|
@@ -164,27 +165,27 @@ def test_generic_filter_packbits(store: StorePath):
|
|
|
164
165
|
data[0:4, :] = True
|
|
165
166
|
|
|
166
167
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
167
|
-
a =
|
|
168
|
+
a = zarr.create_array(
|
|
168
169
|
store / "generic_packbits",
|
|
169
170
|
shape=data.shape,
|
|
170
|
-
|
|
171
|
+
chunks=(16, 16),
|
|
171
172
|
dtype=data.dtype,
|
|
172
173
|
fill_value=0,
|
|
173
|
-
|
|
174
|
+
filters=[numcodecs.zarr3.PackBits()],
|
|
174
175
|
)
|
|
175
176
|
|
|
176
177
|
a[:, :] = data.copy()
|
|
177
|
-
a =
|
|
178
|
+
a = zarr.open_array(store / "generic_packbits", mode="r")
|
|
178
179
|
np.testing.assert_array_equal(data, a[:, :])
|
|
179
180
|
|
|
180
181
|
with pytest.raises(ValueError, match=".*requires bool dtype.*"):
|
|
181
|
-
|
|
182
|
+
zarr.create_array(
|
|
182
183
|
store / "generic_packbits_err",
|
|
183
184
|
shape=data.shape,
|
|
184
|
-
|
|
185
|
+
chunks=(16, 16),
|
|
185
186
|
dtype="uint32",
|
|
186
187
|
fill_value=0,
|
|
187
|
-
|
|
188
|
+
filters=[numcodecs.zarr3.PackBits()],
|
|
188
189
|
)
|
|
189
190
|
|
|
190
191
|
|
|
@@ -198,26 +199,30 @@ def test_generic_filter_packbits(store: StorePath):
|
|
|
198
199
|
numcodecs.zarr3.JenkinsLookup3,
|
|
199
200
|
],
|
|
200
201
|
)
|
|
201
|
-
def test_generic_checksum(
|
|
202
|
+
def test_generic_checksum(
|
|
203
|
+
store: StorePath, codec_class: type[numcodecs.zarr3._NumcodecsBytesBytesCodec]
|
|
204
|
+
):
|
|
202
205
|
data = np.linspace(0, 10, 256, dtype="float32").reshape((16, 16))
|
|
203
206
|
|
|
204
207
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
205
|
-
a =
|
|
208
|
+
a = zarr.create_array(
|
|
206
209
|
store / "generic_checksum",
|
|
207
210
|
shape=data.shape,
|
|
208
|
-
|
|
211
|
+
chunks=(16, 16),
|
|
209
212
|
dtype=data.dtype,
|
|
210
213
|
fill_value=0,
|
|
211
|
-
|
|
214
|
+
compressors=[codec_class()],
|
|
212
215
|
)
|
|
213
216
|
|
|
214
217
|
a[:, :] = data.copy()
|
|
215
|
-
a =
|
|
218
|
+
a = zarr.open_array(store / "generic_checksum", mode="r")
|
|
216
219
|
np.testing.assert_array_equal(data, a[:, :])
|
|
217
220
|
|
|
218
221
|
|
|
219
222
|
@pytest.mark.parametrize("codec_class", [numcodecs.zarr3.PCodec, numcodecs.zarr3.ZFPY])
|
|
220
|
-
def test_generic_bytes_codec(
|
|
223
|
+
def test_generic_bytes_codec(
|
|
224
|
+
store: StorePath, codec_class: type[numcodecs.zarr3._NumcodecsArrayBytesCodec]
|
|
225
|
+
):
|
|
221
226
|
try:
|
|
222
227
|
codec_class()._codec # noqa: B018
|
|
223
228
|
except ValueError as e:
|
|
@@ -225,22 +230,45 @@ def test_generic_bytes_codec(store: StorePath, codec_class: type[numcodecs.zarr3
|
|
|
225
230
|
pytest.xfail(f"{codec_class.codec_name} is not available: {e}")
|
|
226
231
|
else:
|
|
227
232
|
raise # pragma: no cover
|
|
228
|
-
except ImportError as e:
|
|
233
|
+
except ImportError as e: # pragma: no cover
|
|
229
234
|
pytest.xfail(f"{codec_class.codec_name} is not available: {e}")
|
|
230
235
|
|
|
231
236
|
data = np.arange(0, 256, dtype="float32").reshape((16, 16))
|
|
232
237
|
|
|
233
238
|
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
234
|
-
a =
|
|
239
|
+
a = zarr.create_array(
|
|
235
240
|
store / "generic",
|
|
236
241
|
shape=data.shape,
|
|
237
|
-
|
|
242
|
+
chunks=(16, 16),
|
|
238
243
|
dtype=data.dtype,
|
|
239
244
|
fill_value=0,
|
|
240
|
-
|
|
241
|
-
codec_class(),
|
|
242
|
-
],
|
|
245
|
+
serializer=codec_class(),
|
|
243
246
|
)
|
|
244
247
|
|
|
245
248
|
a[:, :] = data.copy()
|
|
246
249
|
np.testing.assert_array_equal(data, a[:, :])
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
def test_delta_astype(store: StorePath):
|
|
253
|
+
data = np.linspace(0, 10, 256, dtype="i8").reshape((16, 16))
|
|
254
|
+
|
|
255
|
+
with pytest.warns(UserWarning, match=EXPECTED_WARNING_STR):
|
|
256
|
+
a = zarr.create_array(
|
|
257
|
+
store / "generic",
|
|
258
|
+
shape=data.shape,
|
|
259
|
+
chunks=(16, 16),
|
|
260
|
+
dtype=data.dtype,
|
|
261
|
+
fill_value=0,
|
|
262
|
+
filters=[
|
|
263
|
+
numcodecs.zarr3.Delta(dtype="i8", astype="i2"), # type: ignore[arg-type]
|
|
264
|
+
],
|
|
265
|
+
)
|
|
266
|
+
|
|
267
|
+
a[:, :] = data.copy()
|
|
268
|
+
a = zarr.open_array(store / "generic", mode="r")
|
|
269
|
+
np.testing.assert_array_equal(data, a[:, :])
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
def test_repr():
|
|
273
|
+
codec = numcodecs.zarr3.LZ4(level=5)
|
|
274
|
+
assert repr(codec) == "LZ4(codec_name='numcodecs.lz4', codec_config={'level': 5})"
|
numcodecs/version.py
CHANGED
|
Binary file
|
numcodecs/zarr3.py
CHANGED
|
@@ -8,12 +8,13 @@ You can use codecs from :py:mod:`numcodecs` by constructing codecs from :py:mod:
|
|
|
8
8
|
>>> import zarr
|
|
9
9
|
>>> import numcodecs.zarr3
|
|
10
10
|
>>>
|
|
11
|
-
>>>
|
|
12
|
-
|
|
13
|
-
...
|
|
14
|
-
...
|
|
11
|
+
>>> array = zarr.create_array(
|
|
12
|
+
... store="data.zarr",
|
|
13
|
+
... shape=(1024, 1024),
|
|
14
|
+
... chunks=(64, 64),
|
|
15
15
|
... dtype="uint32",
|
|
16
|
-
...
|
|
16
|
+
... filters=[numcodecs.zarr3.Delta()],
|
|
17
|
+
... compressors=[numcodecs.zarr3.BZ2(level=5)])
|
|
17
18
|
>>> array[:] = np.arange(*array.shape).astype(array.dtype)
|
|
18
19
|
|
|
19
20
|
.. note::
|
|
@@ -40,8 +41,10 @@ try:
|
|
|
40
41
|
|
|
41
42
|
if zarr.__version__ < "3.0.0": # pragma: no cover
|
|
42
43
|
raise ImportError("zarr 3.0.0 or later is required to use the numcodecs zarr integration.")
|
|
43
|
-
except ImportError: # pragma: no cover
|
|
44
|
-
raise ImportError(
|
|
44
|
+
except ImportError as e: # pragma: no cover
|
|
45
|
+
raise ImportError(
|
|
46
|
+
"zarr 3.0.0 or later is required to use the numcodecs zarr integration."
|
|
47
|
+
) from e
|
|
45
48
|
|
|
46
49
|
from zarr.abc.codec import ArrayArrayCodec, ArrayBytesCodec, BytesBytesCodec
|
|
47
50
|
from zarr.abc.metadata import Metadata
|
|
@@ -95,6 +98,7 @@ class _NumcodecsCodec(Metadata):
|
|
|
95
98
|
"Numcodecs codecs are not in the Zarr version 3 specification and "
|
|
96
99
|
"may not be supported by other zarr implementations.",
|
|
97
100
|
category=UserWarning,
|
|
101
|
+
stacklevel=2,
|
|
98
102
|
)
|
|
99
103
|
|
|
100
104
|
@cached_property
|
|
@@ -116,6 +120,12 @@ class _NumcodecsCodec(Metadata):
|
|
|
116
120
|
def compute_encoded_size(self, input_byte_length: int, chunk_spec: ArraySpec) -> int:
|
|
117
121
|
raise NotImplementedError # pragma: no cover
|
|
118
122
|
|
|
123
|
+
# Override __repr__ because dynamically constructed classes don't seem to work otherwise
|
|
124
|
+
def __repr__(self) -> str:
|
|
125
|
+
codec_config = self.codec_config.copy()
|
|
126
|
+
codec_config.pop("id", None)
|
|
127
|
+
return f"{self.__class__.__name__}(codec_name={self.codec_name!r}, codec_config={codec_config!r})"
|
|
128
|
+
|
|
119
129
|
|
|
120
130
|
class _NumcodecsBytesBytesCodec(_NumcodecsCodec, BytesBytesCodec):
|
|
121
131
|
def __init__(self, **codec_config: JSON) -> None:
|
|
@@ -266,7 +276,19 @@ class Shuffle(_NumcodecsBytesBytesCodec):
|
|
|
266
276
|
|
|
267
277
|
|
|
268
278
|
# array-to-array codecs ("filters")
|
|
269
|
-
|
|
279
|
+
@_add_docstring_wrapper("numcodecs.delta.Delta")
|
|
280
|
+
class Delta(_NumcodecsArrayArrayCodec):
|
|
281
|
+
codec_name = f"{CODEC_PREFIX}delta"
|
|
282
|
+
|
|
283
|
+
def __init__(self, **codec_config: dict[str, JSON]) -> None:
|
|
284
|
+
super().__init__(**codec_config)
|
|
285
|
+
|
|
286
|
+
def resolve_metadata(self, chunk_spec: ArraySpec) -> ArraySpec:
|
|
287
|
+
if astype := self.codec_config.get("astype"):
|
|
288
|
+
return replace(chunk_spec, dtype=np.dtype(astype)) # type: ignore[arg-type]
|
|
289
|
+
return chunk_spec
|
|
290
|
+
|
|
291
|
+
|
|
270
292
|
BitRound = _add_docstring(
|
|
271
293
|
_make_array_array_codec("bitround", "BitRound"), "numcodecs.bitround.BitRound"
|
|
272
294
|
)
|
|
@@ -355,25 +377,25 @@ PCodec = _add_docstring(_make_array_bytes_codec("pcodec", "PCodec"), "numcodecs.
|
|
|
355
377
|
ZFPY = _add_docstring(_make_array_bytes_codec("zfpy", "ZFPY"), "numcodecs.zfpy.ZFPY")
|
|
356
378
|
|
|
357
379
|
__all__ = [
|
|
358
|
-
"Blosc",
|
|
359
|
-
"LZ4",
|
|
360
|
-
"Zstd",
|
|
361
|
-
"Zlib",
|
|
362
|
-
"GZip",
|
|
363
380
|
"BZ2",
|
|
364
|
-
"LZMA",
|
|
365
|
-
"Shuffle",
|
|
366
|
-
"Delta",
|
|
367
|
-
"BitRound",
|
|
368
|
-
"FixedScaleOffset",
|
|
369
|
-
"Quantize",
|
|
370
|
-
"PackBits",
|
|
371
|
-
"AsType",
|
|
372
381
|
"CRC32",
|
|
373
382
|
"CRC32C",
|
|
383
|
+
"LZ4",
|
|
384
|
+
"LZMA",
|
|
385
|
+
"ZFPY",
|
|
374
386
|
"Adler32",
|
|
387
|
+
"AsType",
|
|
388
|
+
"BitRound",
|
|
389
|
+
"Blosc",
|
|
390
|
+
"Delta",
|
|
391
|
+
"FixedScaleOffset",
|
|
375
392
|
"Fletcher32",
|
|
393
|
+
"GZip",
|
|
376
394
|
"JenkinsLookup3",
|
|
377
395
|
"PCodec",
|
|
378
|
-
"
|
|
396
|
+
"PackBits",
|
|
397
|
+
"Quantize",
|
|
398
|
+
"Shuffle",
|
|
399
|
+
"Zlib",
|
|
400
|
+
"Zstd",
|
|
379
401
|
]
|
numcodecs/zfpy.py
CHANGED
|
@@ -13,7 +13,7 @@ with suppress(PackageNotFoundError):
|
|
|
13
13
|
if _zfpy_version:
|
|
14
14
|
# Check NumPy version
|
|
15
15
|
_numpy_version: tuple = tuple(map(int, version("numpy").split('.')))
|
|
16
|
-
if _numpy_version >= (2, 0, 0) and _zfpy_version
|
|
16
|
+
if _numpy_version >= (2, 0, 0) and _zfpy_version < (1, 0, 1): # pragma: no cover
|
|
17
17
|
_zfpy_version = ()
|
|
18
18
|
warnings.warn(
|
|
19
19
|
"NumPy version >= 2.0.0 detected. The zfpy library is incompatible with this version of NumPy. "
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: numcodecs
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
|
|
5
5
|
Maintainer-email: Alistair Miles <alimanfoo@googlemail.com>
|
|
6
6
|
License: MIT
|
|
@@ -22,6 +22,7 @@ Requires-Python: >=3.11
|
|
|
22
22
|
Description-Content-Type: text/x-rst
|
|
23
23
|
License-File: LICENSE.txt
|
|
24
24
|
Requires-Dist: numpy>=1.24
|
|
25
|
+
Requires-Dist: deprecated
|
|
25
26
|
Provides-Extra: docs
|
|
26
27
|
Requires-Dist: sphinx; extra == "docs"
|
|
27
28
|
Requires-Dist: sphinx-issues; extra == "docs"
|
|
@@ -37,9 +38,8 @@ Provides-Extra: msgpack
|
|
|
37
38
|
Requires-Dist: msgpack; extra == "msgpack"
|
|
38
39
|
Provides-Extra: zfpy
|
|
39
40
|
Requires-Dist: zfpy>=1.0.0; extra == "zfpy"
|
|
40
|
-
Requires-Dist: numpy<2.0.0; extra == "zfpy"
|
|
41
41
|
Provides-Extra: pcodec
|
|
42
|
-
Requires-Dist: pcodec<0.
|
|
42
|
+
Requires-Dist: pcodec<0.4,>=0.3; extra == "pcodec"
|
|
43
43
|
Provides-Extra: crc32c
|
|
44
44
|
Requires-Dist: crc32c>=2.7; extra == "crc32c"
|
|
45
45
|
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
numcodecs-0.15.0.dist-info/RECORD,,
|
|
2
|
+
numcodecs-0.15.0.dist-info/WHEEL,sha256=zEwrEM3mH_qOUQ9uk3aZI5DMOaUao9_e1G94mKtHrTY,109
|
|
3
|
+
numcodecs-0.15.0.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
|
|
4
|
+
numcodecs-0.15.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
|
|
5
|
+
numcodecs-0.15.0.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
|
|
6
|
+
numcodecs-0.15.0.dist-info/METADATA,sha256=Ex3f5L-JE6Kr2Bm9v148Lu1xeLTFWkH7k0k9kbL2iGM,2934
|
|
7
|
+
numcodecs/blosc.cpython-313-darwin.so,sha256=8Qb1wHDHyK0Bte7uUfqk15cPap74_8VqYBk2I9ifPHA,1042664
|
|
8
|
+
numcodecs/lzma.py,sha256=6XeJ-c-lTJN1EVrIOb5cEFEiMGlNHsS4c_OentmUox0,2257
|
|
9
|
+
numcodecs/astype.py,sha256=pfdFqjNvb-PETswa2_UxZm632O-y2Lex-g_68IJpiuk,2099
|
|
10
|
+
numcodecs/gzip.py,sha256=DJuc87g8neqn-SYEeCEQwPSdEN5oZGgDUan9MTI6Fb4,1436
|
|
11
|
+
numcodecs/lz4.cpython-313-darwin.so,sha256=gpmZWi4e_JhhFGQJ2nz6Er36FAKDHcOqMapaU8vV_dc,248088
|
|
12
|
+
numcodecs/base64.py,sha256=79BSqVvloKc8JYenUQfqdPm0a0JAZhd9Zld7k5Cp2lc,752
|
|
13
|
+
numcodecs/bz2.py,sha256=4Ups3IMVsjvBlXyaeYONPdE14TaK9V-4LH5LSNe7AGc,1174
|
|
14
|
+
numcodecs/version.py,sha256=oHv-EAjiXbJma3jZ0Tq6UPimiWYyyw2Ao9S8zdq9uWs,413
|
|
15
|
+
numcodecs/compat.py,sha256=JadagE6pTEcrX3V8wDml0n1tdkHvOWo6D21J3a4P0mw,6505
|
|
16
|
+
numcodecs/checksum32.py,sha256=L4BxbQZZ556EvJlYyxCQgZ3fvIZFxva_rycOx7FEBdY,5435
|
|
17
|
+
numcodecs/vlen.cpython-313-darwin.so,sha256=tt_pVEv6wsTtQvrsZVsbZ9auchlBYiDyrZ7yi5rjUZc,261048
|
|
18
|
+
numcodecs/ndarray_like.py,sha256=fVupUg_K_rDZNRlUmTiRp53OmF6YHb-yNyixJNFR8ME,1883
|
|
19
|
+
numcodecs/quantize.py,sha256=UcQPVsWvx7fHb5mWfOd7VvhCc-MI8C2B3afBG4KYUFM,3026
|
|
20
|
+
numcodecs/registry.py,sha256=76qBMok0wR_eeffFZNNEiFxysjHNVI_76AxFGi9p5PI,1831
|
|
21
|
+
numcodecs/jenkins.cpython-313-darwin.so,sha256=M1d3h38jfoYku_wB4ROGDeMtPpurerlSrgrkFzZ6YHA,186784
|
|
22
|
+
numcodecs/pickles.py,sha256=LtcMa6cK-V5TUYJNR4dRDsWWRmLfNv0syZddbrbRv3A,1290
|
|
23
|
+
numcodecs/zstd.cpython-313-darwin.so,sha256=y9sGvBFKRNXJ2CqigWincw_0cKvx00xNR2G5E6CD2wQ,730728
|
|
24
|
+
numcodecs/fixedscaleoffset.py,sha256=fQwP_H-P3Mq4_LXtMQw5CLYeMjCBUdTtV-AKWVAIzkY,4188
|
|
25
|
+
numcodecs/__init__.py,sha256=LzVQQ8X8Mk7mXvOX9tu5tlwmQwIVhuhXMofXdFJJNjo,3103
|
|
26
|
+
numcodecs/bitround.py,sha256=4lei39ZG4G2GGkDxl12q29nR5_8a4Icx4T-OgP1A1D4,2845
|
|
27
|
+
numcodecs/_shuffle.cpython-313-darwin.so,sha256=N1UTGuwzsIPrYxpTO5MVqTuSgFeyPlL0tU93wFxC_64,182320
|
|
28
|
+
numcodecs/zlib.py,sha256=gLPUICEQc5p6DICC_63nOsbUqxzJH_5ynuzenTQXzOQ,1049
|
|
29
|
+
numcodecs/shuffle.py,sha256=hYOFJOCEeDSNI-TqT1JrbQxbprkQD4R8VfSzD4IPI3I,1575
|
|
30
|
+
numcodecs/fletcher32.cpython-313-darwin.so,sha256=xqraDUtcArF9BcJNqILJ8feFBap5I1RgqfUytkyqkO4,205824
|
|
31
|
+
numcodecs/compat_ext.cpython-313-darwin.so,sha256=HZ49_x6Zrr0k16WXMk6Q9O3BFQgsqjx0VbbiiFEGmHc,78016
|
|
32
|
+
numcodecs/zarr3.py,sha256=lBBOVkoVmZ1YPU4z1RxdRHXaS4LXlD6ys_YobQ1gZM8,14712
|
|
33
|
+
numcodecs/delta.py,sha256=x0PjNiuX48rmh9M6ZHoYkI9bKOq00Aiyz_jLrVlAq8w,2791
|
|
34
|
+
numcodecs/zfpy.py,sha256=--TCrXOsSJ-2uU_7d-0YwHpk8Hti98hofB4jht5helk,3900
|
|
35
|
+
numcodecs/msgpacks.py,sha256=GkTcFJrhKdpWnwQn4-282q4_edqlzZFdJFux2LtNk30,2619
|
|
36
|
+
numcodecs/packbits.py,sha256=L7gM-8AQQTPC2IOPbatzNp-tH67EUp0Tonx_JSYHje4,1993
|
|
37
|
+
numcodecs/categorize.py,sha256=jPipT6mVrpGSe9QuI-MeVzTZuUKAZWF0XN5Wj_8Ifng,2948
|
|
38
|
+
numcodecs/json.py,sha256=mtzQE4a_vC3LJcVNnI3_HKqk96OPTebsMZLYye2Fbx4,3373
|
|
39
|
+
numcodecs/abc.py,sha256=13vRquZ-u_n1YqM9SYx8sBDseJlH9A_A57_Z2QE-4KY,4504
|
|
40
|
+
numcodecs/pcodec.py,sha256=ZB2Hw5l7aOKi0hOQ3M7GOAwaTNCBRiNr_8IpJPdrcE4,4714
|
|
41
|
+
numcodecs/tests/test_categorize.py,sha256=ftL-LSVq63R-kGuQxUb96uL1e563mlF9CWAf3yQB-Bk,2756
|
|
42
|
+
numcodecs/tests/test_registry.py,sha256=RsxLV9oO37jpUOaj58L-RgNX9Brw_SjH2Pb1eJsYS6c,1049
|
|
43
|
+
numcodecs/tests/test_vlen_utf8.py,sha256=H92YtqNY0kpO2Icu1Ey2iItK38ZhKMnJi_2FBwcKSvU,2474
|
|
44
|
+
numcodecs/tests/test_bitround.py,sha256=ayCuANNDA0cP3mqZkJ90QU9eI7ws4-lPRKU_gkflOlg,2349
|
|
45
|
+
numcodecs/tests/test_gzip.py,sha256=I685q0_vu3b_JibUz3nhW1mQtlLSQzGdgGD2twbGPXc,2925
|
|
46
|
+
numcodecs/tests/test_zarr3.py,sha256=b35dc1yZTM21TuVknJr7v_MS9ECNaLIdEt05vd8_fNM,8333
|
|
47
|
+
numcodecs/tests/test_delta.py,sha256=1_XnV1JYMEnxO0iXDXVSzTltjRPtdoEb4Y8TpmllS-o,1636
|
|
48
|
+
numcodecs/tests/test_lzma.py,sha256=mPj5MebkWg1h0W4ClFF_34cJ0_Toje7z7JZ8gOMngzs,2723
|
|
49
|
+
numcodecs/tests/test_bz2.py,sha256=pefO_YlOLr-RIswHas8DAQ4j81jhqLT5XGEuQ2i8DtI,1889
|
|
50
|
+
numcodecs/tests/__init__.py,sha256=Q6sNFjGUjcEU3MvCUd-PDtmYcS79Yvys3wbWWXvU5qY,72
|
|
51
|
+
numcodecs/tests/test_pickles.py,sha256=p7LfH5qJp1mmJC0nRWJbyPVCvt46raS_A6pjOZYOXqY,1679
|
|
52
|
+
numcodecs/tests/test_quantize.py,sha256=KvOyoj-u4S_-z8pT4syR6yE4i1ftFGkRfCTmgafumGw,2151
|
|
53
|
+
numcodecs/tests/test_entrypoints_backport.py,sha256=3IVVH4VmXu6e1gzUpU5S8koCtR3X-3HAqAlPqdRlv6M,1108
|
|
54
|
+
numcodecs/tests/test_pcodec.py,sha256=2ntYLBGaEJrztEoRlnkE38ObYpmQf6l1wwH_Z2pYqwk,2500
|
|
55
|
+
numcodecs/tests/test_lz4.py,sha256=63bjnBmT-bHCduj9w_LRTkJKBvo8emBzwVpzoDC5-A0,2353
|
|
56
|
+
numcodecs/tests/test_msgpacks.py,sha256=03FEZBME1z7vRAzDTX-xdOQ-_ZMzn4R9GRMrsZeKI0s,3950
|
|
57
|
+
numcodecs/tests/test_astype.py,sha256=Wu1HtHZA6K_rW-JCxSWmU4Wwp9U83JUbUZ2ro9xDk9s,2367
|
|
58
|
+
numcodecs/tests/test_jenkins.py,sha256=DoOXdTLD25aXA0nwiO1zk_vG4N2UI6Wc3C72yqIByNc,4446
|
|
59
|
+
numcodecs/tests/test_fletcher32.py,sha256=hNf2zSAi16k4222qI2k-n5X4GgswVBfOqvKHSgSoRxQ,1456
|
|
60
|
+
numcodecs/tests/test_packbits.py,sha256=8B2sQnM-DiAEtehCEm5xm7fQ1xWm0rMk_z7Uk8OXvGI,989
|
|
61
|
+
numcodecs/tests/common.py,sha256=X-GtE43nzOUbEZ807BP8n2M9GEw3Q1ylok-Lw1gOHZA,12184
|
|
62
|
+
numcodecs/tests/test_base64.py,sha256=QseE5-aDwz7yv5-0dAG_6vTjeN3OpFvgcg8IhklRA4Y,2315
|
|
63
|
+
numcodecs/tests/test_shuffle.py,sha256=uFWTuBbdcqwnWbyh2knwc46klZ00VekzWh8Ya0I2HiE,4659
|
|
64
|
+
numcodecs/tests/test_fixedscaleoffset.py,sha256=3RclYFw3WFu36WUIciZ23gNIiBmzboXvrEugMw1311A,2536
|
|
65
|
+
numcodecs/tests/test_compat.py,sha256=YdaGiNsXgounzSX7uFXOz_7uh6Wf1n6kO0Ql6eICtIY,3728
|
|
66
|
+
numcodecs/tests/test_zlib.py,sha256=TFa-I15xHd4h2nNC2goChWdlB_xZLbK_vAL7s4upPWI,2539
|
|
67
|
+
numcodecs/tests/test_json.py,sha256=od5MZbSclKFWM_RjS2DsVWGIYlJXG6-wm0yQLdkBTh0,2292
|
|
68
|
+
numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
|
|
69
|
+
numcodecs/tests/test_vlen_array.py,sha256=QaWVuflGxQUFToVcWVIzZHG_b8Vm4JJG6mBZVGNasK0,2477
|
|
70
|
+
numcodecs/tests/test_zstd.py,sha256=79R6VMhni-6kg9LmlmBzGe22HXhg0RvSVjw4jVNPMJQ,2610
|
|
71
|
+
numcodecs/tests/test_vlen_bytes.py,sha256=D-g8OOxwJhplx4UD5ytFfRrX7_6Q8Xey06MxoajEDgU,2642
|
|
72
|
+
numcodecs/tests/test_entrypoints.py,sha256=zWbyosPRhbSevwp4grlfjfnEyIneny-u7XmMe1xcoLI,504
|
|
73
|
+
numcodecs/tests/test_zarr3_import.py,sha256=JBDyrL57lbZMI9axb9eA1OZnd_Lg-ppfsNV3VvxwVxk,332
|
|
74
|
+
numcodecs/tests/test_checksum32.py,sha256=D0BV_p3XQ2Dv9jIoI9zEQel-PO25KWYIpUDgrhr6Cf8,4601
|
|
75
|
+
numcodecs/tests/test_zfpy.py,sha256=g_2txraHDbnBPtbymJXsgAiD6MBH44-JYRkNx9tttYw,2762
|
|
76
|
+
numcodecs/tests/test_blosc.py,sha256=3tF0zT6mhcn5ZJOlzgHW0c2eZFb9UBp2c15KxD7wPA4,8854
|
|
77
|
+
numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
|
|
78
|
+
numcodecs/tests/package_with_entrypoint/__init__.py,sha256=wLyrk73nqKO8rcFtA_sXlcC8PKMzdYbbBRY8eH8Xc10,212
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
numcodecs-0.14.1.dist-info/RECORD,,
|
|
2
|
-
numcodecs-0.14.1.dist-info/WHEEL,sha256=fAn_VQwWuH_rMRyKwhTwvKm9fx9GheRVEYtY-6ugsD8,109
|
|
3
|
-
numcodecs-0.14.1.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
|
|
4
|
-
numcodecs-0.14.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
|
|
5
|
-
numcodecs-0.14.1.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
|
|
6
|
-
numcodecs-0.14.1.dist-info/METADATA,sha256=z7htzMD2b4ngjUfooz3PXrelfQm_mVsX_-Qw12a12P8,2952
|
|
7
|
-
numcodecs/blosc.cpython-313-darwin.so,sha256=keCb-EsmINwBCEfXF-YjmJkyZHHGQLXNMOlFD8ZsGJc,1042200
|
|
8
|
-
numcodecs/lzma.py,sha256=T46qhtfl1910bMIbcat6bp6_XBcfP9u-3HElBwHiAOU,2241
|
|
9
|
-
numcodecs/astype.py,sha256=0M9nV2Jb-8EwyoZGmOhCssaBvMej_B6hQ2p41VkmDdA,2137
|
|
10
|
-
numcodecs/gzip.py,sha256=7TyUzc9oliPqKA58VV7fNkCi_c9PP04MioAKG7a1oV0,1469
|
|
11
|
-
numcodecs/lz4.cpython-313-darwin.so,sha256=yQ6_BioDrpa_B4xchmgpd1nOS7vZVcrPByCVE_6sZgs,248088
|
|
12
|
-
numcodecs/base64.py,sha256=i-WpnY7A-vT-71By_tVBvHi41O4DzuqYyB829eNd29E,784
|
|
13
|
-
numcodecs/bz2.py,sha256=4Ups3IMVsjvBlXyaeYONPdE14TaK9V-4LH5LSNe7AGc,1174
|
|
14
|
-
numcodecs/version.py,sha256=2Ctgubb5b_lxFG2ixV07ZYKw5eto45wRlKsBIObkGsg,413
|
|
15
|
-
numcodecs/compat.py,sha256=JadagE6pTEcrX3V8wDml0n1tdkHvOWo6D21J3a4P0mw,6505
|
|
16
|
-
numcodecs/checksum32.py,sha256=L4BxbQZZ556EvJlYyxCQgZ3fvIZFxva_rycOx7FEBdY,5435
|
|
17
|
-
numcodecs/vlen.cpython-313-darwin.so,sha256=KC3YZeNFuWXZZa2PAU50mojSxxc6w5SrpBfv39tcte4,261048
|
|
18
|
-
numcodecs/ndarray_like.py,sha256=Kl5O-oKpdvt_MsfYsD73d4dIr3WXaOJLdHUEsc6tIrc,1896
|
|
19
|
-
numcodecs/quantize.py,sha256=WNgbVPNR6CnaF58yBbVHIQ_jg1mBe8dirkZ2ErNpQOI,3037
|
|
20
|
-
numcodecs/registry.py,sha256=iGnnBJ1fuWBMQTvnLMMliXXMk2gmhaHq7o3m7i9kNsk,1833
|
|
21
|
-
numcodecs/jenkins.cpython-313-darwin.so,sha256=5zP6AQhMpI3K5qm-4WShZ8qCgxv9erH6x5c0QbblW3g,186784
|
|
22
|
-
numcodecs/pickles.py,sha256=qWNRLnWZnZ9nq_QhNNI2x-s1Uoq9Eq1lsgwCSRTTxJo,1288
|
|
23
|
-
numcodecs/zstd.cpython-313-darwin.so,sha256=STUA55gOanI2PmrlAEtuB_6Tnx1Z6EWrgpNM8yxIDjk,730728
|
|
24
|
-
numcodecs/fixedscaleoffset.py,sha256=3J5JWZcE13lAJz9axSEpTUpAC9H-yI2RBOX8oGhtwns,4196
|
|
25
|
-
numcodecs/__init__.py,sha256=duci0UP6fKmZIxYNy5XoUltyvBFRPDlSBGcJFbF_zro,3277
|
|
26
|
-
numcodecs/bitround.py,sha256=4lei39ZG4G2GGkDxl12q29nR5_8a4Icx4T-OgP1A1D4,2845
|
|
27
|
-
numcodecs/_shuffle.cpython-313-darwin.so,sha256=t6UBkSXV2uczzzNvrO1KnIFbcPVkuqMZTQny3QW78cM,182320
|
|
28
|
-
numcodecs/zlib.py,sha256=gLPUICEQc5p6DICC_63nOsbUqxzJH_5ynuzenTQXzOQ,1049
|
|
29
|
-
numcodecs/shuffle.py,sha256=hYOFJOCEeDSNI-TqT1JrbQxbprkQD4R8VfSzD4IPI3I,1575
|
|
30
|
-
numcodecs/fletcher32.cpython-313-darwin.so,sha256=4qyU2-45T8-nRkdPnZdrk9oHJbhUUjSNwgG9bKj67Z4,205824
|
|
31
|
-
numcodecs/compat_ext.cpython-313-darwin.so,sha256=Qe2MIU9wUDpmXnPB1Baqiy1pkdcTIILD2A6_K3gaz3M,78016
|
|
32
|
-
numcodecs/zarr3.py,sha256=yKajHAoBvJMWzGw59qiYrmhP9atPGzAlfNlpwcAIhac,13948
|
|
33
|
-
numcodecs/delta.py,sha256=XMETqU9gvhvf3O2GoBQottuOg87GJr1DeaFRGEJGxfE,2984
|
|
34
|
-
numcodecs/zfpy.py,sha256=ScGPw-w8t8CFHvijnwgE3pW4JIKD98QpSOH24sZsH60,3901
|
|
35
|
-
numcodecs/msgpacks.py,sha256=sd3uuMN1wQz9XecP8eZOQY-huqbjC6BlOzx4NsJ95kY,2611
|
|
36
|
-
numcodecs/packbits.py,sha256=L7gM-8AQQTPC2IOPbatzNp-tH67EUp0Tonx_JSYHje4,1993
|
|
37
|
-
numcodecs/categorize.py,sha256=yUzeAuPTNbMiI2vhkPRcxpEi0yQnr1orFs_I_BVoEoo,2983
|
|
38
|
-
numcodecs/json.py,sha256=Xu4dN-FydFaV-5jOewJxVBsV6rUfGUWIp4IncrjIR-E,3355
|
|
39
|
-
numcodecs/abc.py,sha256=a8EcPXbuKXaHuNfAj6CoeAVb6kphgKGoLsHcre2aXxg,4505
|
|
40
|
-
numcodecs/pcodec.py,sha256=I3VuOXj54mvM5m_tr6wHcKBULg9m9NJl41RWaOgRK2U,3059
|
|
41
|
-
numcodecs/tests/test_categorize.py,sha256=ftL-LSVq63R-kGuQxUb96uL1e563mlF9CWAf3yQB-Bk,2756
|
|
42
|
-
numcodecs/tests/test_registry.py,sha256=9eUhr3PDw_rj7mk5k8Gh4Szl3pUXbXXZuTfZXKW-ZPU,1052
|
|
43
|
-
numcodecs/tests/test_vlen_utf8.py,sha256=H92YtqNY0kpO2Icu1Ey2iItK38ZhKMnJi_2FBwcKSvU,2474
|
|
44
|
-
numcodecs/tests/test_bitround.py,sha256=ayCuANNDA0cP3mqZkJ90QU9eI7ws4-lPRKU_gkflOlg,2349
|
|
45
|
-
numcodecs/tests/test_gzip.py,sha256=I685q0_vu3b_JibUz3nhW1mQtlLSQzGdgGD2twbGPXc,2925
|
|
46
|
-
numcodecs/tests/test_zarr3.py,sha256=dVMacA7jTahAjJc6VLPnJMTykL0Gd73vJ0PKORRk_gU,7538
|
|
47
|
-
numcodecs/tests/test_delta.py,sha256=1_XnV1JYMEnxO0iXDXVSzTltjRPtdoEb4Y8TpmllS-o,1636
|
|
48
|
-
numcodecs/tests/test_lzma.py,sha256=VyepAqH5Bzne-_VdTIV8E8KHkGwK9QoLdrD-1iRX5p4,2721
|
|
49
|
-
numcodecs/tests/test_bz2.py,sha256=pefO_YlOLr-RIswHas8DAQ4j81jhqLT5XGEuQ2i8DtI,1889
|
|
50
|
-
numcodecs/tests/__init__.py,sha256=Q6sNFjGUjcEU3MvCUd-PDtmYcS79Yvys3wbWWXvU5qY,72
|
|
51
|
-
numcodecs/tests/test_pickles.py,sha256=p7LfH5qJp1mmJC0nRWJbyPVCvt46raS_A6pjOZYOXqY,1679
|
|
52
|
-
numcodecs/tests/test_quantize.py,sha256=KvOyoj-u4S_-z8pT4syR6yE4i1ftFGkRfCTmgafumGw,2151
|
|
53
|
-
numcodecs/tests/test_entrypoints_backport.py,sha256=3IVVH4VmXu6e1gzUpU5S8koCtR3X-3HAqAlPqdRlv6M,1108
|
|
54
|
-
numcodecs/tests/test_pcodec.py,sha256=cM0Knn6gzuqF8cMqn-aTspCAu6T45Dp53PfT4F_WejI,2024
|
|
55
|
-
numcodecs/tests/test_lz4.py,sha256=63bjnBmT-bHCduj9w_LRTkJKBvo8emBzwVpzoDC5-A0,2353
|
|
56
|
-
numcodecs/tests/test_msgpacks.py,sha256=03FEZBME1z7vRAzDTX-xdOQ-_ZMzn4R9GRMrsZeKI0s,3950
|
|
57
|
-
numcodecs/tests/test_astype.py,sha256=Wu1HtHZA6K_rW-JCxSWmU4Wwp9U83JUbUZ2ro9xDk9s,2367
|
|
58
|
-
numcodecs/tests/test_jenkins.py,sha256=DoOXdTLD25aXA0nwiO1zk_vG4N2UI6Wc3C72yqIByNc,4446
|
|
59
|
-
numcodecs/tests/test_fletcher32.py,sha256=hNf2zSAi16k4222qI2k-n5X4GgswVBfOqvKHSgSoRxQ,1456
|
|
60
|
-
numcodecs/tests/test_packbits.py,sha256=8B2sQnM-DiAEtehCEm5xm7fQ1xWm0rMk_z7Uk8OXvGI,989
|
|
61
|
-
numcodecs/tests/common.py,sha256=cLiS3SwUORLL0N8Yx4TjqgrB7Y9nwxx_5-T2qL0vqD0,12168
|
|
62
|
-
numcodecs/tests/test_base64.py,sha256=QseE5-aDwz7yv5-0dAG_6vTjeN3OpFvgcg8IhklRA4Y,2315
|
|
63
|
-
numcodecs/tests/test_shuffle.py,sha256=OH-3B3q6nY0wmBfR93jndtm0dNX4k8BQCHuQYPHvur0,4689
|
|
64
|
-
numcodecs/tests/test_fixedscaleoffset.py,sha256=3RclYFw3WFu36WUIciZ23gNIiBmzboXvrEugMw1311A,2536
|
|
65
|
-
numcodecs/tests/test_compat.py,sha256=YdaGiNsXgounzSX7uFXOz_7uh6Wf1n6kO0Ql6eICtIY,3728
|
|
66
|
-
numcodecs/tests/test_zlib.py,sha256=TFa-I15xHd4h2nNC2goChWdlB_xZLbK_vAL7s4upPWI,2539
|
|
67
|
-
numcodecs/tests/test_json.py,sha256=od5MZbSclKFWM_RjS2DsVWGIYlJXG6-wm0yQLdkBTh0,2292
|
|
68
|
-
numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
|
|
69
|
-
numcodecs/tests/test_vlen_array.py,sha256=QaWVuflGxQUFToVcWVIzZHG_b8Vm4JJG6mBZVGNasK0,2477
|
|
70
|
-
numcodecs/tests/test_zstd.py,sha256=79R6VMhni-6kg9LmlmBzGe22HXhg0RvSVjw4jVNPMJQ,2610
|
|
71
|
-
numcodecs/tests/test_vlen_bytes.py,sha256=BpASj3-ap_ZjyK_nYP7YQSZg4gsECCh5DW_4pdNlhRs,2473
|
|
72
|
-
numcodecs/tests/test_entrypoints.py,sha256=zWbyosPRhbSevwp4grlfjfnEyIneny-u7XmMe1xcoLI,504
|
|
73
|
-
numcodecs/tests/test_zarr3_import.py,sha256=JBDyrL57lbZMI9axb9eA1OZnd_Lg-ppfsNV3VvxwVxk,332
|
|
74
|
-
numcodecs/tests/test_checksum32.py,sha256=D0BV_p3XQ2Dv9jIoI9zEQel-PO25KWYIpUDgrhr6Cf8,4601
|
|
75
|
-
numcodecs/tests/test_zfpy.py,sha256=g_2txraHDbnBPtbymJXsgAiD6MBH44-JYRkNx9tttYw,2762
|
|
76
|
-
numcodecs/tests/test_blosc.py,sha256=VixIjcQNlzIdXrs1yvEMA1q7EMAu1jLy_VtRmgjcQU4,8866
|
|
77
|
-
numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
|
|
78
|
-
numcodecs/tests/package_with_entrypoint/__init__.py,sha256=wLyrk73nqKO8rcFtA_sXlcC8PKMzdYbbBRY8eH8Xc10,212
|
|
File without changes
|