numcodecs 0.15.1__cp311-cp311-macosx_11_0_arm64.whl → 0.16.0__cp311-cp311-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 CHANGED
@@ -51,7 +51,7 @@ except OSError: # pragma: no cover
51
51
  ncores = 1
52
52
  blosc._init()
53
53
  blosc.set_nthreads(min(8, ncores))
54
- atexit.register(blosc.destroy)
54
+ atexit.register(blosc._destroy)
55
55
 
56
56
  from numcodecs import zstd as zstd
57
57
  from numcodecs.zstd import Zstd
Binary file
Binary file
numcodecs/checksum32.py CHANGED
@@ -1,11 +1,12 @@
1
+ import abc
1
2
  import struct
2
3
  import zlib
3
- from collections.abc import Callable
4
4
  from contextlib import suppress
5
5
  from types import ModuleType
6
- from typing import TYPE_CHECKING, Literal, Optional
6
+ from typing import Literal, Optional
7
7
 
8
8
  import numpy as np
9
+ from typing_extensions import Buffer
9
10
 
10
11
  from .abc import Codec
11
12
  from .compat import ensure_contiguous_ndarray, ndarray_copy
@@ -15,15 +16,11 @@ _crc32c: Optional[ModuleType] = None
15
16
  with suppress(ImportError):
16
17
  import crc32c as _crc32c # type: ignore[no-redef, unused-ignore]
17
18
 
18
- if TYPE_CHECKING: # pragma: no cover
19
- from typing_extensions import Buffer
20
-
21
19
  CHECKSUM_LOCATION = Literal['start', 'end']
22
20
 
23
21
 
24
- class Checksum32(Codec):
22
+ class Checksum32(Codec, abc.ABC):
25
23
  # override in sub-class
26
- checksum: Callable[["Buffer", int], int] | None = None
27
24
  location: CHECKSUM_LOCATION = 'start'
28
25
 
29
26
  def __init__(self, location: CHECKSUM_LOCATION | None = None):
@@ -67,6 +64,10 @@ class Checksum32(Codec):
67
64
  )
68
65
  return ndarray_copy(payload_view, out)
69
66
 
67
+ @staticmethod
68
+ @abc.abstractmethod
69
+ def checksum(data: Buffer, value: int) -> int: ...
70
+
70
71
 
71
72
  class CRC32(Checksum32):
72
73
  """Codec add a crc32 checksum to the buffer.
@@ -78,9 +79,15 @@ class CRC32(Checksum32):
78
79
  """
79
80
 
80
81
  codec_id = 'crc32'
81
- checksum = zlib.crc32
82
82
  location = 'start'
83
83
 
84
+ @staticmethod
85
+ def checksum(data: Buffer, value: int = 0) -> int:
86
+ """
87
+ Thin wrapper around ``zlib.crc32``.
88
+ """
89
+ return zlib.crc32(data, value)
90
+
84
91
 
85
92
  class Adler32(Checksum32):
86
93
  """Codec add a adler32 checksum to the buffer.
@@ -92,9 +99,15 @@ class Adler32(Checksum32):
92
99
  """
93
100
 
94
101
  codec_id = 'adler32'
95
- checksum = zlib.adler32
96
102
  location = 'start'
97
103
 
104
+ @staticmethod
105
+ def checksum(data: Buffer, value: int = 1) -> int:
106
+ """
107
+ Thin wrapper around ``zlib.adler32``.
108
+ """
109
+ return zlib.adler32(data, value)
110
+
98
111
 
99
112
  class JenkinsLookup3(Checksum32):
100
113
  """Bob Jenkin's lookup3 checksum with 32-bit output
Binary file
Binary file
Binary file
Binary file
numcodecs/tests/common.py CHANGED
@@ -115,74 +115,6 @@ def check_encode_decode(arr, codec, precision=None):
115
115
  compare_arrays(arr, out, precision=precision)
116
116
 
117
117
 
118
- def check_encode_decode_partial(arr, codec, precision=None):
119
- # N.B., watch out here with blosc compressor, if the itemsize of
120
- # the source buffer is different then the results of encoding
121
- # (i.e., compression) may be different. Hence we *do not* require that
122
- # the results of encoding be identical for all possible inputs, rather
123
- # we just require that the results of the encode/decode round-trip can
124
- # be compared to the original array.
125
-
126
- itemsize = arr.itemsize
127
- start, nitems = 5, 10
128
- compare_arr = arr[start : start + nitems]
129
- # test encoding of numpy array
130
- enc = codec.encode(arr)
131
- dec = codec.decode_partial(enc, start, nitems)
132
- compare_arrays(compare_arr, dec, precision=precision)
133
-
134
- # out = np.empty_like(compare_arr)
135
- out = np.empty_like(compare_arr)
136
- print(len(out))
137
-
138
- # test partial decode of encoded bytes
139
- buf = arr.tobytes(order='A')
140
- enc = codec.encode(buf)
141
- dec = codec.decode_partial(enc, start * itemsize, nitems * itemsize, out=out)
142
- compare_arrays(compare_arr, dec, precision=precision)
143
-
144
- # test partial decode of encoded bytearray
145
- buf = bytearray(arr.tobytes(order='A'))
146
- enc = codec.encode(buf)
147
- dec = codec.decode_partial(enc, start * itemsize, nitems * itemsize, out=out)
148
- compare_arrays(compare_arr, dec, precision=precision)
149
-
150
- # test partial decode of encoded array.array
151
- buf = array.array('b', arr.tobytes(order='A'))
152
- enc = codec.encode(buf)
153
- dec = codec.decode_partial(enc, start * itemsize, nitems * itemsize, out=out)
154
- compare_arrays(compare_arr, dec, precision=precision)
155
-
156
- # # decoding should support any object exporting the buffer protocol,
157
-
158
- # # setup
159
- enc_bytes = ensure_bytes(enc)
160
-
161
- # test decoding of raw bytes into numpy array
162
- dec = codec.decode_partial(enc_bytes, start * itemsize, nitems * itemsize, out=out)
163
- compare_arrays(compare_arr, dec, precision=precision)
164
-
165
- # test partial decoding of bytearray
166
- dec = codec.decode_partial(bytearray(enc_bytes), start * itemsize, nitems * itemsize, out=out)
167
- compare_arrays(compare_arr, dec, precision=precision)
168
-
169
- # test partial decoding of array.array
170
- buf = array.array('b', enc_bytes)
171
- dec = codec.decode_partial(buf, start * itemsize, nitems * itemsize, out=out)
172
- compare_arrays(compare_arr, dec, precision=precision)
173
-
174
- # test decoding of numpy array into numpy array
175
- buf = np.frombuffer(enc_bytes, dtype='u1')
176
- dec = codec.decode_partial(buf, start * itemsize, nitems * itemsize, out=out)
177
- compare_arrays(compare_arr, dec, precision=precision)
178
-
179
- # test decoding directly into bytearray
180
- out = bytearray(compare_arr.nbytes)
181
- codec.decode_partial(enc_bytes, start * itemsize, nitems * itemsize, out=out)
182
- # noinspection PyTypeChecker
183
- compare_arrays(compare_arr, out, precision=precision)
184
-
185
-
186
118
  def assert_array_items_equal(res, arr):
187
119
  assert isinstance(res, np.ndarray)
188
120
  res = res.reshape(-1, order='A')
@@ -15,7 +15,6 @@ from numcodecs.tests.common import (
15
15
  check_backwards_compatibility,
16
16
  check_config,
17
17
  check_encode_decode,
18
- check_encode_decode_partial,
19
18
  check_err_decode_object_buffer,
20
19
  check_err_encode_object_buffer,
21
20
  check_max_buffer_size,
@@ -75,19 +74,6 @@ def test_encode_decode(array, codec):
75
74
  check_encode_decode(array, codec)
76
75
 
77
76
 
78
- @pytest.mark.parametrize('codec', codecs)
79
- @pytest.mark.parametrize(
80
- 'array',
81
- [
82
- pytest.param(x) if len(x.shape) == 1 else pytest.param(x, marks=[pytest.mark.xfail])
83
- for x in arrays
84
- ],
85
- )
86
- def test_partial_decode(codec, array):
87
- _skip_null(codec)
88
- check_encode_decode_partial(array, codec)
89
-
90
-
91
77
  def test_config():
92
78
  codec = Blosc(cname='zstd', clevel=3, shuffle=1)
93
79
  check_config(codec)
@@ -273,3 +259,26 @@ def test_max_buffer_size():
273
259
  _skip_null(codec)
274
260
  assert codec.max_buffer_size == 2**31 - 1
275
261
  check_max_buffer_size(codec)
262
+
263
+
264
+ def test_typesize_explicit():
265
+ arr = np.arange(100).astype("int64")
266
+ itemsize = arr.itemsize
267
+ codec_no_type_size = Blosc(shuffle=Blosc.SHUFFLE)
268
+ codec_itemsize = Blosc(shuffle=Blosc.SHUFFLE, typesize=itemsize)
269
+ encoded_without_itemsize = codec_no_type_size.encode(arr.tobytes())
270
+ encoded_with_itemsize = codec_itemsize.encode(arr.tobytes())
271
+ # third byte encodes the `typesize`
272
+ assert encoded_without_itemsize[3] == 1 # inferred from bytes i.e., 1
273
+ assert encoded_with_itemsize[3] == itemsize # given as a constructor argument
274
+
275
+
276
+ def test_typesize_less_than_1():
277
+ with pytest.raises(ValueError, match=r"Cannot use typesize"):
278
+ Blosc(shuffle=Blosc.SHUFFLE, typesize=0)
279
+ compressor = Blosc(shuffle=Blosc.SHUFFLE)
280
+ # not really something that should be done in practice, but good for testing.
281
+ compressor.typesize = 0
282
+ arr = np.arange(100)
283
+ with pytest.raises(ValueError, match=r"Cannot use typesize"):
284
+ compressor.encode(arr.tobytes())
@@ -1,3 +1,4 @@
1
+ import sys
1
2
  import unittest
2
3
 
3
4
  import numpy as np
@@ -86,7 +87,7 @@ def test_decode_errors():
86
87
 
87
88
  # TODO: fix this test on GitHub actions somehow...
88
89
  # See https://github.com/zarr-developers/numcodecs/issues/683
89
- @pytest.mark.skip("Test is failing on GitHub actions.")
90
+ @pytest.mark.skipif(sys.platform == "darwin", reason="Test is failing on macOS on GitHub actions.")
90
91
  def test_encode_none():
91
92
  a = np.array([b'foo', None, b'bar'], dtype=object)
92
93
  codec = VLenBytes()
numcodecs/version.py CHANGED
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '0.15.1'
16
- __version_tuple__ = version_tuple = (0, 15, 1)
20
+ __version__ = version = '0.16.0'
21
+ __version_tuple__ = version_tuple = (0, 16, 0)
Binary file
numcodecs/zarr3.py CHANGED
@@ -286,7 +286,7 @@ class Delta(_NumcodecsArrayArrayCodec):
286
286
 
287
287
  def resolve_metadata(self, chunk_spec: ArraySpec) -> ArraySpec:
288
288
  if astype := self.codec_config.get("astype"):
289
- return replace(chunk_spec, dtype=np.dtype(astype)) # type: ignore[arg-type]
289
+ return replace(chunk_spec, dtype=np.dtype(astype)) # type: ignore[call-overload]
290
290
  return chunk_spec
291
291
 
292
292
 
@@ -304,7 +304,7 @@ class FixedScaleOffset(_NumcodecsArrayArrayCodec):
304
304
 
305
305
  def resolve_metadata(self, chunk_spec: ArraySpec) -> ArraySpec:
306
306
  if astype := self.codec_config.get("astype"):
307
- return replace(chunk_spec, dtype=np.dtype(astype)) # type: ignore[arg-type]
307
+ return replace(chunk_spec, dtype=np.dtype(astype)) # type: ignore[call-overload]
308
308
  return chunk_spec
309
309
 
310
310
  def evolve_from_array_spec(self, array_spec: ArraySpec) -> FixedScaleOffset:
Binary file
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: numcodecs
3
- Version: 0.15.1
3
+ Version: 0.16.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,7 +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
+ Requires-Dist: typing_extensions
26
26
  Provides-Extra: docs
27
27
  Requires-Dist: sphinx; extra == "docs"
28
28
  Requires-Dist: sphinx-issues; extra == "docs"
@@ -42,6 +42,7 @@ Provides-Extra: pcodec
42
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
+ Dynamic: license-file
45
46
 
46
47
  Numcodecs
47
48
  =========
@@ -1,42 +1,42 @@
1
- numcodecs-0.15.1.dist-info/RECORD,,
2
- numcodecs-0.15.1.dist-info/WHEEL,sha256=NW1RskY9zow1Y68W-gXg0oZyBRAugI1JHywIzAIai5o,109
3
- numcodecs-0.15.1.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
4
- numcodecs-0.15.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
5
- numcodecs-0.15.1.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
6
- numcodecs-0.15.1.dist-info/METADATA,sha256=T3XwC0XFISSWpaQTIYlzENZDZN3F5scItBHMhsR2MLQ,2934
7
- numcodecs/compat_ext.cpython-311-darwin.so,sha256=MiHYUdZqRwhUpiKV0RUE7Xb40Ky_xbRWUjjKeOsJ6kA,78720
1
+ numcodecs-0.16.0.dist-info/RECORD,,
2
+ numcodecs-0.16.0.dist-info/WHEEL,sha256=EfZGgIDXTDki1cNGEkgBr7YEgShBrw-nMmb-y67Rxxs,136
3
+ numcodecs-0.16.0.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
4
+ numcodecs-0.16.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
5
+ numcodecs-0.16.0.dist-info/METADATA,sha256=-ZkkQ6ebbtSkYNiXx2UGU4fpAbdUH6ocVxEbbdxx0DI,2963
6
+ numcodecs-0.16.0.dist-info/licenses/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
7
+ numcodecs/compat_ext.cpython-311-darwin.so,sha256=YHXWKTTH5ZTabFjnMd0MopLURlNvdGliVE34QRgrZmk,57408
8
8
  numcodecs/lzma.py,sha256=6XeJ-c-lTJN1EVrIOb5cEFEiMGlNHsS4c_OentmUox0,2257
9
- numcodecs/fletcher32.cpython-311-darwin.so,sha256=nlDzz5RWYyXYd5DBkZswPzW5WtnFrU_uBMVsBgN8k1E,206032
9
+ numcodecs/fletcher32.cpython-311-darwin.so,sha256=QLrfgld89aJ8pFG3fo1oU4Bw9_2YIgGzXAC8pLha2pw,206480
10
10
  numcodecs/astype.py,sha256=pfdFqjNvb-PETswa2_UxZm632O-y2Lex-g_68IJpiuk,2099
11
11
  numcodecs/gzip.py,sha256=DJuc87g8neqn-SYEeCEQwPSdEN5oZGgDUan9MTI6Fb4,1436
12
12
  numcodecs/base64.py,sha256=79BSqVvloKc8JYenUQfqdPm0a0JAZhd9Zld7k5Cp2lc,752
13
13
  numcodecs/bz2.py,sha256=4Ups3IMVsjvBlXyaeYONPdE14TaK9V-4LH5LSNe7AGc,1174
14
- numcodecs/version.py,sha256=po5_rvCFTU8xU9IC56wyK0-zfBgz_U4xX6CO2mv9Mzs,413
14
+ numcodecs/version.py,sha256=DiQpBIZMVT47CbF7vAc_z27p1BtVHJkNlV2_J-6KcLU,513
15
15
  numcodecs/compat.py,sha256=JadagE6pTEcrX3V8wDml0n1tdkHvOWo6D21J3a4P0mw,6505
16
- numcodecs/checksum32.py,sha256=iYJY1oAUQ71_Dk167uBuPh1wLOdozhGCbld7f7-qqhg,5450
16
+ numcodecs/checksum32.py,sha256=KoaT9cwXE-JEdwjEi6v5CM8HDgRcdqPm-G6IwEp45Po,5726
17
17
  numcodecs/ndarray_like.py,sha256=fVupUg_K_rDZNRlUmTiRp53OmF6YHb-yNyixJNFR8ME,1883
18
18
  numcodecs/quantize.py,sha256=4mPx4kWanv5wGa22HvEiP893xqG5dDDtN-oKChj6nfE,3016
19
19
  numcodecs/registry.py,sha256=oRN9uJsWIosZbAZFkOWyUos3GZ-h_zq_cN-t_uPLk0A,1864
20
20
  numcodecs/pickles.py,sha256=LtcMa6cK-V5TUYJNR4dRDsWWRmLfNv0syZddbrbRv3A,1290
21
21
  numcodecs/fixedscaleoffset.py,sha256=fQwP_H-P3Mq4_LXtMQw5CLYeMjCBUdTtV-AKWVAIzkY,4188
22
- numcodecs/__init__.py,sha256=LzVQQ8X8Mk7mXvOX9tu5tlwmQwIVhuhXMofXdFJJNjo,3103
22
+ numcodecs/__init__.py,sha256=cgA3s5JGgVs9lAu6olFajOWgHpsCYtnLih10kMBBxS0,3104
23
23
  numcodecs/bitround.py,sha256=4lei39ZG4G2GGkDxl12q29nR5_8a4Icx4T-OgP1A1D4,2845
24
24
  numcodecs/zlib.py,sha256=gLPUICEQc5p6DICC_63nOsbUqxzJH_5ynuzenTQXzOQ,1049
25
25
  numcodecs/shuffle.py,sha256=hYOFJOCEeDSNI-TqT1JrbQxbprkQD4R8VfSzD4IPI3I,1575
26
- numcodecs/blosc.cpython-311-darwin.so,sha256=hxFoqw8bpZDe_OVy1VQvZQTs5ebib9MgFjAFksqnyGw,1059688
27
- numcodecs/zarr3.py,sha256=dfGgWL1yfB-YPwUzhlDQtfTuNziCeq6m9PvR-X-KlhQ,14665
28
- numcodecs/lz4.cpython-311-darwin.so,sha256=mIg7dd_Rt5jOTJVgzhycHJne5MX4pikhafem1l6QqMs,248600
26
+ numcodecs/blosc.cpython-311-darwin.so,sha256=Ryq9MS-m47ILFUWf_DgVe0IgwBTBZ48N9VrLlUKVAmY,1041880
27
+ numcodecs/zarr3.py,sha256=SG3H69Xj3jUwo2ArGOrPW3zZ0B_Hw4zcQf6Ve_GrpsE,14675
28
+ numcodecs/lz4.cpython-311-darwin.so,sha256=cMKK_67HtlkG_mz96EL5poljpYqVgGy2ll27DjSNgic,248808
29
29
  numcodecs/delta.py,sha256=x0PjNiuX48rmh9M6ZHoYkI9bKOq00Aiyz_jLrVlAq8w,2791
30
- numcodecs/vlen.cpython-311-darwin.so,sha256=jmA1pWLOvR4naujO_IBbe5keUvcL_2crladvQERsInI,261368
30
+ numcodecs/vlen.cpython-311-darwin.so,sha256=CFdaLUrfn99_VIZ7l4OSpX2b01kK_6BAO0HLKj4rYTY,261928
31
31
  numcodecs/zfpy.py,sha256=--TCrXOsSJ-2uU_7d-0YwHpk8Hti98hofB4jht5helk,3900
32
32
  numcodecs/msgpacks.py,sha256=GkTcFJrhKdpWnwQn4-282q4_edqlzZFdJFux2LtNk30,2619
33
33
  numcodecs/errors.py,sha256=IV0B9fw_Wn8k3fjLtXOOU_-0_Al-dWY_dizvqFiNwkk,663
34
- numcodecs/jenkins.cpython-311-darwin.so,sha256=yW_PI46UJEhWyT8wjnmFGoiwJIs-6mhO1zfO8HAeCZ0,187040
34
+ numcodecs/jenkins.cpython-311-darwin.so,sha256=XjDVPs9mPsxcCSd1BHbnb_8bjeaE14E1IO0AfIIo02A,187040
35
35
  numcodecs/packbits.py,sha256=L7gM-8AQQTPC2IOPbatzNp-tH67EUp0Tonx_JSYHje4,1993
36
36
  numcodecs/categorize.py,sha256=jPipT6mVrpGSe9QuI-MeVzTZuUKAZWF0XN5Wj_8Ifng,2948
37
- numcodecs/zstd.cpython-311-darwin.so,sha256=0uuWFE9Rmsm8Ro1HDIrrTt9tjNaU_jCQ-3z-mCAgEB8,731272
37
+ numcodecs/zstd.cpython-311-darwin.so,sha256=G3LlqJFp_5IZchQTm9WpNyms4MbgOTmJkf44XFRx-0U,731736
38
38
  numcodecs/json.py,sha256=WQcDcDPVxAQm-sxUg_XD70InKLD4iyjQOBiHPn2N3VE,3393
39
- numcodecs/_shuffle.cpython-311-darwin.so,sha256=dIsxqM9oUpYJchyYGjdklx1V6g5BcDlibU-RAY7jhHk,182560
39
+ numcodecs/_shuffle.cpython-311-darwin.so,sha256=yr-R21PHGiwuAU552rYVYUtZi-nEZZTLCOHMcUiTxcM,182560
40
40
  numcodecs/abc.py,sha256=13vRquZ-u_n1YqM9SYx8sBDseJlH9A_A57_Z2QE-4KY,4504
41
41
  numcodecs/pcodec.py,sha256=ZB2Hw5l7aOKi0hOQ3M7GOAwaTNCBRiNr_8IpJPdrcE4,4714
42
42
  numcodecs/tests/test_categorize.py,sha256=ftL-LSVq63R-kGuQxUb96uL1e563mlF9CWAf3yQB-Bk,2756
@@ -59,7 +59,7 @@ numcodecs/tests/test_astype.py,sha256=Wu1HtHZA6K_rW-JCxSWmU4Wwp9U83JUbUZ2ro9xDk9
59
59
  numcodecs/tests/test_jenkins.py,sha256=DoOXdTLD25aXA0nwiO1zk_vG4N2UI6Wc3C72yqIByNc,4446
60
60
  numcodecs/tests/test_fletcher32.py,sha256=hNf2zSAi16k4222qI2k-n5X4GgswVBfOqvKHSgSoRxQ,1456
61
61
  numcodecs/tests/test_packbits.py,sha256=8B2sQnM-DiAEtehCEm5xm7fQ1xWm0rMk_z7Uk8OXvGI,989
62
- numcodecs/tests/common.py,sha256=X-GtE43nzOUbEZ807BP8n2M9GEw3Q1ylok-Lw1gOHZA,12184
62
+ numcodecs/tests/common.py,sha256=5U3kGYIpVLSBbjqRONDDZxzg2eIlTS5EVmn5Lzp9E4I,9336
63
63
  numcodecs/tests/test_base64.py,sha256=QseE5-aDwz7yv5-0dAG_6vTjeN3OpFvgcg8IhklRA4Y,2315
64
64
  numcodecs/tests/test_shuffle.py,sha256=uFWTuBbdcqwnWbyh2knwc46klZ00VekzWh8Ya0I2HiE,4659
65
65
  numcodecs/tests/test_fixedscaleoffset.py,sha256=3RclYFw3WFu36WUIciZ23gNIiBmzboXvrEugMw1311A,2536
@@ -69,11 +69,11 @@ numcodecs/tests/test_json.py,sha256=od5MZbSclKFWM_RjS2DsVWGIYlJXG6-wm0yQLdkBTh0,
69
69
  numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
70
70
  numcodecs/tests/test_vlen_array.py,sha256=QaWVuflGxQUFToVcWVIzZHG_b8Vm4JJG6mBZVGNasK0,2477
71
71
  numcodecs/tests/test_zstd.py,sha256=79R6VMhni-6kg9LmlmBzGe22HXhg0RvSVjw4jVNPMJQ,2610
72
- numcodecs/tests/test_vlen_bytes.py,sha256=D-g8OOxwJhplx4UD5ytFfRrX7_6Q8Xey06MxoajEDgU,2642
72
+ numcodecs/tests/test_vlen_bytes.py,sha256=jmjWdWHhB2pbVKMCVlqwP0Ztnnc1UVZbA3rInucP6KE,2697
73
73
  numcodecs/tests/test_entrypoints.py,sha256=zWbyosPRhbSevwp4grlfjfnEyIneny-u7XmMe1xcoLI,504
74
74
  numcodecs/tests/test_zarr3_import.py,sha256=JBDyrL57lbZMI9axb9eA1OZnd_Lg-ppfsNV3VvxwVxk,332
75
75
  numcodecs/tests/test_checksum32.py,sha256=D0BV_p3XQ2Dv9jIoI9zEQel-PO25KWYIpUDgrhr6Cf8,4601
76
76
  numcodecs/tests/test_zfpy.py,sha256=g_2txraHDbnBPtbymJXsgAiD6MBH44-JYRkNx9tttYw,2762
77
- numcodecs/tests/test_blosc.py,sha256=3tF0zT6mhcn5ZJOlzgHW0c2eZFb9UBp2c15KxD7wPA4,8854
77
+ numcodecs/tests/test_blosc.py,sha256=Ym1JtkbUhsXY_zEkyNU6lt4hbR_zZnM0WzbT33dZs7k,9496
78
78
  numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
79
79
  numcodecs/tests/package_with_entrypoint/__init__.py,sha256=wLyrk73nqKO8rcFtA_sXlcC8PKMzdYbbBRY8eH8Xc10,212
@@ -1,5 +1,6 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-macosx_11_0_arm64
5
+ Generator: delocate 0.13.0
5
6