numcodecs 0.14.0__cp312-cp312-macosx_11_0_arm64.whl → 0.14.1__cp312-cp312-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
@@ -117,13 +117,17 @@ with suppress(ImportError):
117
117
 
118
118
  register_codec(MsgPack)
119
119
 
120
- from numcodecs.checksum32 import CRC32, CRC32C, Adler32, JenkinsLookup3
120
+ from numcodecs.checksum32 import CRC32, Adler32, JenkinsLookup3
121
121
 
122
122
  register_codec(CRC32)
123
- register_codec(CRC32C)
124
123
  register_codec(Adler32)
125
124
  register_codec(JenkinsLookup3)
126
125
 
126
+ with suppress(ImportError):
127
+ from numcodecs.checksum32 import CRC32C
128
+
129
+ register_codec(CRC32C)
130
+
127
131
  from numcodecs.json import JSON
128
132
 
129
133
  register_codec(JSON)
Binary file
Binary file
numcodecs/checksum32.py CHANGED
@@ -1,7 +1,9 @@
1
1
  import struct
2
2
  import zlib
3
3
  from collections.abc import Callable
4
- from typing import TYPE_CHECKING, Literal
4
+ from contextlib import suppress
5
+ from types import ModuleType
6
+ from typing import TYPE_CHECKING, Literal, Optional
5
7
 
6
8
  import numpy as np
7
9
 
@@ -9,7 +11,11 @@ from .abc import Codec
9
11
  from .compat import ensure_contiguous_ndarray, ndarray_copy
10
12
  from .jenkins import jenkins_lookup3
11
13
 
12
- if TYPE_CHECKING:
14
+ _crc32c: Optional[ModuleType] = None
15
+ with suppress(ImportError):
16
+ import crc32c as _crc32c # type: ignore[no-redef]
17
+
18
+ if TYPE_CHECKING: # pragma: no cover
13
19
  from typing_extensions import Buffer
14
20
 
15
21
  CHECKSUM_LOCATION = Literal['start', 'end']
@@ -76,28 +82,6 @@ class CRC32(Checksum32):
76
82
  location = 'start'
77
83
 
78
84
 
79
- class CRC32C(Checksum32):
80
- """Codec add a crc32c checksum to the buffer.
81
-
82
- Parameters
83
- ----------
84
- location : 'start' or 'end'
85
- Where to place the checksum in the buffer.
86
- """
87
-
88
- codec_id = 'crc32c'
89
-
90
- def checksum(self, buf):
91
- try:
92
- from crc32c import crc32c as crc32c_
93
-
94
- return crc32c_(buf)
95
- except ImportError: # pragma: no cover
96
- raise ImportError("crc32c must be installed to use the CRC32C checksum codec.")
97
-
98
- location = 'end'
99
-
100
-
101
85
  class Adler32(Checksum32):
102
86
  """Codec add a adler32 checksum to the buffer.
103
87
 
@@ -168,3 +152,19 @@ class JenkinsLookup3(Checksum32):
168
152
  out.view("uint8")[:] = b[:-4]
169
153
  return out
170
154
  return memoryview(b[:-4])
155
+
156
+
157
+ if _crc32c:
158
+
159
+ class CRC32C(Checksum32):
160
+ """Codec add a crc32c checksum to the buffer.
161
+
162
+ Parameters
163
+ ----------
164
+ location : 'start' or 'end'
165
+ Where to place the checksum in the buffer.
166
+ """
167
+
168
+ codec_id = 'crc32c'
169
+ checksum = _crc32c.crc32c # type: ignore[union-attr]
170
+ location = 'end'
Binary file
Binary file
Binary file
Binary file
numcodecs/pcodec.py CHANGED
@@ -1,7 +1,6 @@
1
1
  from typing import Literal, Optional
2
2
 
3
- import numcodecs
4
- import numcodecs.abc
3
+ from numcodecs.abc import Codec
5
4
  from numcodecs.compat import ensure_contiguous_ndarray
6
5
 
7
6
  try:
@@ -13,7 +12,7 @@ except ImportError: # pragma: no cover
13
12
  DEFAULT_MAX_PAGE_N = 262144
14
13
 
15
14
 
16
- class PCodec(numcodecs.abc.Codec):
15
+ class PCodec(Codec):
17
16
  """
18
17
  PCodec (or pco, pronounced "pico") losslessly compresses and decompresses
19
18
  numerical sequences with high compression ratio and fast speed.
@@ -1,9 +1,10 @@
1
1
  import itertools
2
+ from contextlib import suppress
2
3
 
3
4
  import numpy as np
4
5
  import pytest
5
6
 
6
- from numcodecs.checksum32 import CRC32, CRC32C, Adler32
7
+ from numcodecs.checksum32 import CRC32, Adler32
7
8
  from numcodecs.tests.common import (
8
9
  check_backwards_compatibility,
9
10
  check_config,
@@ -13,6 +14,12 @@ from numcodecs.tests.common import (
13
14
  check_repr,
14
15
  )
15
16
 
17
+ has_crc32c = False
18
+ with suppress(ImportError):
19
+ from numcodecs.checksum32 import CRC32C
20
+
21
+ has_crc32c = True
22
+
16
23
  # mix of dtypes: integer, float, bool, string
17
24
  # mix of shapes: 1D, 2D, 3D
18
25
  # mix of orders: C, F
@@ -35,11 +42,16 @@ arrays = [
35
42
  codecs = [
36
43
  CRC32(),
37
44
  CRC32(location="end"),
38
- CRC32C(location="start"),
39
- CRC32C(),
40
45
  Adler32(),
41
46
  Adler32(location="end"),
42
47
  ]
48
+ if has_crc32c:
49
+ codecs.extend(
50
+ [
51
+ CRC32C(location="start"),
52
+ CRC32C(),
53
+ ]
54
+ )
43
55
 
44
56
 
45
57
  @pytest.mark.parametrize(("codec", "arr"), itertools.product(codecs, arrays))
@@ -84,25 +96,28 @@ def test_err_encode_list(codec):
84
96
  def test_err_location():
85
97
  with pytest.raises(ValueError):
86
98
  CRC32(location="foo")
87
- with pytest.raises(ValueError):
88
- CRC32C(location="foo")
89
99
  with pytest.raises(ValueError):
90
100
  Adler32(location="foo")
101
+ if has_crc32c:
102
+ with pytest.raises(ValueError):
103
+ CRC32C(location="foo")
91
104
 
92
105
 
93
106
  def test_repr():
94
107
  check_repr("CRC32(location='start')")
95
- check_repr("CRC32C(location='start')")
96
- check_repr("Adler32(location='start')")
97
108
  check_repr("CRC32(location='end')")
98
- check_repr("CRC32C(location='end')")
109
+ check_repr("Adler32(location='start')")
99
110
  check_repr("Adler32(location='end')")
111
+ if has_crc32c:
112
+ check_repr("CRC32C(location='start')")
113
+ check_repr("CRC32C(location='end')")
100
114
 
101
115
 
102
116
  def test_backwards_compatibility():
103
117
  check_backwards_compatibility(CRC32.codec_id, arrays, [CRC32()])
104
118
  check_backwards_compatibility(Adler32.codec_id, arrays, [Adler32()])
105
- check_backwards_compatibility(CRC32C.codec_id, arrays, [CRC32C()])
119
+ if has_crc32c:
120
+ check_backwards_compatibility(CRC32C.codec_id, arrays, [CRC32C()])
106
121
 
107
122
 
108
123
  @pytest.mark.parametrize("codec", codecs)
@@ -123,6 +138,7 @@ def test_err_out_too_small(codec):
123
138
  codec.decode(codec.encode(arr), out)
124
139
 
125
140
 
141
+ @pytest.mark.skipif(not has_crc32c, reason="Needs `crc32c` installed")
126
142
  def test_crc32c_checksum():
127
143
  arr = np.arange(0, 64, dtype="uint8")
128
144
  buf = CRC32C(location="end").encode(arr)
@@ -5,10 +5,10 @@ from typing import TYPE_CHECKING
5
5
  import numpy as np
6
6
  import pytest
7
7
 
8
- if not TYPE_CHECKING:
9
- zarr = pytest.importorskip("zarr")
10
- else:
8
+ if TYPE_CHECKING: # pragma: no cover
11
9
  import zarr
10
+ else:
11
+ zarr = pytest.importorskip("zarr")
12
12
 
13
13
  import zarr.storage
14
14
  from zarr.core.common import JSON
@@ -36,7 +36,7 @@ EXPECTED_WARNING_STR = "Numcodecs codecs are not in the Zarr version 3.*"
36
36
 
37
37
  @pytest.fixture
38
38
  def store() -> StorePath:
39
- return StorePath(MemoryStore(mode="w"))
39
+ return StorePath(MemoryStore(read_only=False))
40
40
 
41
41
 
42
42
  ALL_CODECS = [getattr(numcodecs.zarr3, cls_name) for cls_name in numcodecs.zarr3.__all__]
@@ -50,9 +50,7 @@ def test_entry_points(codec_class: type[numcodecs.zarr3._NumcodecsCodec]):
50
50
 
51
51
  @pytest.mark.parametrize("codec_class", ALL_CODECS)
52
52
  def test_docstring(codec_class: type[numcodecs.zarr3._NumcodecsCodec]):
53
- if codec_class.__doc__ is None:
54
- pytest.skip()
55
- assert "See :class:`numcodecs." in codec_class.__doc__
53
+ assert "See :class:`numcodecs." in codec_class.__doc__ # type: ignore[operator]
56
54
 
57
55
 
58
56
  @pytest.mark.parametrize(
numcodecs/version.py CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.14.0'
16
- __version_tuple__ = version_tuple = (0, 14, 0)
15
+ __version__ = version = '0.14.1'
16
+ __version_tuple__ = version_tuple = (0, 14, 1)
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numcodecs
3
- Version: 0.14.0
3
+ Version: 0.14.1
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
@@ -21,28 +21,27 @@ Classifier: Programming Language :: Python :: 3 :: Only
21
21
  Requires-Python: >=3.11
22
22
  Description-Content-Type: text/x-rst
23
23
  License-File: LICENSE.txt
24
- Requires-Dist: numpy >=1.24
25
- Provides-Extra: crc32c
26
- Requires-Dist: crc32c >=2.7 ; extra == 'crc32c'
24
+ Requires-Dist: numpy>=1.24
27
25
  Provides-Extra: docs
28
- Requires-Dist: sphinx ; extra == 'docs'
29
- Requires-Dist: sphinx-issues ; extra == 'docs'
30
- Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
31
- Requires-Dist: numpydoc ; extra == 'docs'
32
- Requires-Dist: mock ; extra == 'docs'
33
- Provides-Extra: msgpack
34
- Requires-Dist: msgpack ; extra == 'msgpack'
35
- Provides-Extra: pcodec
36
- Requires-Dist: pcodec <0.3,>=0.2 ; extra == 'pcodec'
26
+ Requires-Dist: sphinx; extra == "docs"
27
+ Requires-Dist: sphinx-issues; extra == "docs"
28
+ Requires-Dist: pydata-sphinx-theme; extra == "docs"
29
+ Requires-Dist: numpydoc; extra == "docs"
37
30
  Provides-Extra: test
38
- Requires-Dist: coverage ; extra == 'test'
39
- Requires-Dist: pytest ; extra == 'test'
40
- Requires-Dist: pytest-cov ; extra == 'test'
41
- Provides-Extra: test_extras
42
- Requires-Dist: importlib-metadata ; extra == 'test_extras'
31
+ Requires-Dist: coverage; extra == "test"
32
+ Requires-Dist: pytest; extra == "test"
33
+ Requires-Dist: pytest-cov; extra == "test"
34
+ Provides-Extra: test-extras
35
+ Requires-Dist: importlib_metadata; extra == "test-extras"
36
+ Provides-Extra: msgpack
37
+ Requires-Dist: msgpack; extra == "msgpack"
43
38
  Provides-Extra: zfpy
44
- Requires-Dist: zfpy >=1.0.0 ; extra == 'zfpy'
45
- Requires-Dist: numpy <2.0.0 ; extra == 'zfpy'
39
+ Requires-Dist: zfpy>=1.0.0; extra == "zfpy"
40
+ Requires-Dist: numpy<2.0.0; extra == "zfpy"
41
+ Provides-Extra: pcodec
42
+ Requires-Dist: pcodec<0.3,>=0.2; extra == "pcodec"
43
+ Provides-Extra: crc32c
44
+ Requires-Dist: crc32c>=2.7; extra == "crc32c"
46
45
 
47
46
  Numcodecs
48
47
  =========
@@ -1,49 +1,49 @@
1
- numcodecs-0.14.0.dist-info/RECORD,,
2
- numcodecs-0.14.0.dist-info/WHEEL,sha256=tdSrwMtZcLfHvxdPcoi6tWwNkYfUEQUdNl6Dqrrc2TY,109
3
- numcodecs-0.14.0.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
4
- numcodecs-0.14.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
5
- numcodecs-0.14.0.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
6
- numcodecs-0.14.0.dist-info/METADATA,sha256=sTRfpHqmugtMbGMkTSRf2XoBjGPiERfVOIaEk876DNE,3008
7
- numcodecs/jenkins.cpython-312-darwin.so,sha256=ZIQp6p4cxdSRvuzbYiUwu39l9Ya025ya7ieJ34jAc1o,203712
1
+ numcodecs-0.14.1.dist-info/RECORD,,
2
+ numcodecs-0.14.1.dist-info/WHEEL,sha256=7Wd-yga4fjSiXpUH443rsPZpiZ4h8-uNrXJrYRW_e14,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/jenkins.cpython-312-darwin.so,sha256=l07gijT5B3bwPX1kAI54qQM1HvphMX0j1Nh9BUMre3E,203712
8
8
  numcodecs/lzma.py,sha256=T46qhtfl1910bMIbcat6bp6_XBcfP9u-3HElBwHiAOU,2241
9
9
  numcodecs/astype.py,sha256=0M9nV2Jb-8EwyoZGmOhCssaBvMej_B6hQ2p41VkmDdA,2137
10
10
  numcodecs/gzip.py,sha256=7TyUzc9oliPqKA58VV7fNkCi_c9PP04MioAKG7a1oV0,1469
11
- numcodecs/zstd.cpython-312-darwin.so,sha256=YRwsJ2DUp4AE3mNTvSfKFtcN86fP0WUdTpZ3Rvki5fs,731304
11
+ numcodecs/zstd.cpython-312-darwin.so,sha256=mvoGNPdPdlcupQAj1JONyW5tQ7JoRM-7yyhqs8mETpk,731304
12
12
  numcodecs/base64.py,sha256=i-WpnY7A-vT-71By_tVBvHi41O4DzuqYyB829eNd29E,784
13
13
  numcodecs/bz2.py,sha256=4Ups3IMVsjvBlXyaeYONPdE14TaK9V-4LH5LSNe7AGc,1174
14
- numcodecs/version.py,sha256=9XbM6DRatFmjNkeSNxF4a6enpQeo8nPyAy9RTPPwPpY,413
14
+ numcodecs/version.py,sha256=2Ctgubb5b_lxFG2ixV07ZYKw5eto45wRlKsBIObkGsg,413
15
15
  numcodecs/compat.py,sha256=JadagE6pTEcrX3V8wDml0n1tdkHvOWo6D21J3a4P0mw,6505
16
- numcodecs/_shuffle.cpython-312-darwin.so,sha256=Z7FVR7NjiyHYxbDPRINW5ZuZ7_q6kZzH7mFam79PXVk,182736
17
- numcodecs/checksum32.py,sha256=CQACDazagg5bvM07XQUnpMFiWBfkVVP_u_SIOYdxRe4,5378
16
+ numcodecs/_shuffle.cpython-312-darwin.so,sha256=Avu-S7DOOiTZZ6cjtx_SEmDhVjcn7zpKVMii5_YP4xs,182736
17
+ numcodecs/checksum32.py,sha256=L4BxbQZZ556EvJlYyxCQgZ3fvIZFxva_rycOx7FEBdY,5435
18
18
  numcodecs/ndarray_like.py,sha256=Kl5O-oKpdvt_MsfYsD73d4dIr3WXaOJLdHUEsc6tIrc,1896
19
19
  numcodecs/quantize.py,sha256=WNgbVPNR6CnaF58yBbVHIQ_jg1mBe8dirkZ2ErNpQOI,3037
20
20
  numcodecs/registry.py,sha256=iGnnBJ1fuWBMQTvnLMMliXXMk2gmhaHq7o3m7i9kNsk,1833
21
- numcodecs/blosc.cpython-312-darwin.so,sha256=-boaEXsZYwSrdJic6ykkq3gmElJjxLH7XNuj8ZmTNQM,1059160
21
+ numcodecs/blosc.cpython-312-darwin.so,sha256=6r0WcekmWnBkrU9DB-vC7wJ3Q6-2tOxLxgjDc0zpOk8,1059160
22
22
  numcodecs/pickles.py,sha256=qWNRLnWZnZ9nq_QhNNI2x-s1Uoq9Eq1lsgwCSRTTxJo,1288
23
23
  numcodecs/fixedscaleoffset.py,sha256=3J5JWZcE13lAJz9axSEpTUpAC9H-yI2RBOX8oGhtwns,4196
24
- numcodecs/lz4.cpython-312-darwin.so,sha256=c5GOq7n71KuIzV-38NXWNrZDAJyAn9tw00zGpzIuyew,248632
25
- numcodecs/__init__.py,sha256=fyEDQ93UsiZhacarMJ5YOUvmWZpvDi8-tWWF6S5tRFs,3207
24
+ numcodecs/lz4.cpython-312-darwin.so,sha256=ACrr1fvvUtl3EeRqL6R_ousXf-2eJIZooT_Lw-yIYkY,248632
25
+ numcodecs/__init__.py,sha256=duci0UP6fKmZIxYNy5XoUltyvBFRPDlSBGcJFbF_zro,3277
26
26
  numcodecs/bitround.py,sha256=4lei39ZG4G2GGkDxl12q29nR5_8a4Icx4T-OgP1A1D4,2845
27
- numcodecs/vlen.cpython-312-darwin.so,sha256=5Fk3Qyb-XEwJ0IY6WmYpyrgTWDzEeY0mtUUzCBIRXos,261560
27
+ numcodecs/vlen.cpython-312-darwin.so,sha256=m94_KhYCLTpGIGkdK8hNZQVdpMGYzZu-vCerSAPhGdQ,261560
28
28
  numcodecs/zlib.py,sha256=gLPUICEQc5p6DICC_63nOsbUqxzJH_5ynuzenTQXzOQ,1049
29
29
  numcodecs/shuffle.py,sha256=hYOFJOCEeDSNI-TqT1JrbQxbprkQD4R8VfSzD4IPI3I,1575
30
30
  numcodecs/zarr3.py,sha256=yKajHAoBvJMWzGw59qiYrmhP9atPGzAlfNlpwcAIhac,13948
31
31
  numcodecs/delta.py,sha256=XMETqU9gvhvf3O2GoBQottuOg87GJr1DeaFRGEJGxfE,2984
32
32
  numcodecs/zfpy.py,sha256=ScGPw-w8t8CFHvijnwgE3pW4JIKD98QpSOH24sZsH60,3901
33
33
  numcodecs/msgpacks.py,sha256=sd3uuMN1wQz9XecP8eZOQY-huqbjC6BlOzx4NsJ95kY,2611
34
- numcodecs/fletcher32.cpython-312-darwin.so,sha256=qjNwd-EyhsyMip90lO1NK3qnYeQWVknSg-H951qmMzU,206336
35
- numcodecs/compat_ext.cpython-312-darwin.so,sha256=50z2McCZFOOM2XBalGZFH5Pfy2riRhl00kDjGMz8-g0,78416
34
+ numcodecs/fletcher32.cpython-312-darwin.so,sha256=0fGF7Ig20cUuT-a8Ylet4W9IzoLhbqKHygBy148F-YU,206336
35
+ numcodecs/compat_ext.cpython-312-darwin.so,sha256=jjMYeC9uOOV6ZxDsCUmHWFFmAOWH6bzedkBYsGVDcug,78416
36
36
  numcodecs/packbits.py,sha256=L7gM-8AQQTPC2IOPbatzNp-tH67EUp0Tonx_JSYHje4,1993
37
37
  numcodecs/categorize.py,sha256=yUzeAuPTNbMiI2vhkPRcxpEi0yQnr1orFs_I_BVoEoo,2983
38
38
  numcodecs/json.py,sha256=Xu4dN-FydFaV-5jOewJxVBsV6rUfGUWIp4IncrjIR-E,3355
39
39
  numcodecs/abc.py,sha256=a8EcPXbuKXaHuNfAj6CoeAVb6kphgKGoLsHcre2aXxg,4505
40
- numcodecs/pcodec.py,sha256=7fOqhKUWURCbfbQFoEy8772UGna59F6v_6k_4QJrzZg,3079
40
+ numcodecs/pcodec.py,sha256=I3VuOXj54mvM5m_tr6wHcKBULg9m9NJl41RWaOgRK2U,3059
41
41
  numcodecs/tests/test_categorize.py,sha256=ftL-LSVq63R-kGuQxUb96uL1e563mlF9CWAf3yQB-Bk,2756
42
42
  numcodecs/tests/test_registry.py,sha256=9eUhr3PDw_rj7mk5k8Gh4Szl3pUXbXXZuTfZXKW-ZPU,1052
43
43
  numcodecs/tests/test_vlen_utf8.py,sha256=H92YtqNY0kpO2Icu1Ey2iItK38ZhKMnJi_2FBwcKSvU,2474
44
44
  numcodecs/tests/test_bitround.py,sha256=ayCuANNDA0cP3mqZkJ90QU9eI7ws4-lPRKU_gkflOlg,2349
45
45
  numcodecs/tests/test_gzip.py,sha256=I685q0_vu3b_JibUz3nhW1mQtlLSQzGdgGD2twbGPXc,2925
46
- numcodecs/tests/test_zarr3.py,sha256=RqWJMvsCDKFfsCufptIyTCnypE0xEIPRCbCHo1hkYY8,7547
46
+ numcodecs/tests/test_zarr3.py,sha256=dVMacA7jTahAjJc6VLPnJMTykL0Gd73vJ0PKORRk_gU,7538
47
47
  numcodecs/tests/test_delta.py,sha256=1_XnV1JYMEnxO0iXDXVSzTltjRPtdoEb4Y8TpmllS-o,1636
48
48
  numcodecs/tests/test_lzma.py,sha256=VyepAqH5Bzne-_VdTIV8E8KHkGwK9QoLdrD-1iRX5p4,2721
49
49
  numcodecs/tests/test_bz2.py,sha256=pefO_YlOLr-RIswHas8DAQ4j81jhqLT5XGEuQ2i8DtI,1889
@@ -71,7 +71,7 @@ numcodecs/tests/test_zstd.py,sha256=79R6VMhni-6kg9LmlmBzGe22HXhg0RvSVjw4jVNPMJQ,
71
71
  numcodecs/tests/test_vlen_bytes.py,sha256=BpASj3-ap_ZjyK_nYP7YQSZg4gsECCh5DW_4pdNlhRs,2473
72
72
  numcodecs/tests/test_entrypoints.py,sha256=zWbyosPRhbSevwp4grlfjfnEyIneny-u7XmMe1xcoLI,504
73
73
  numcodecs/tests/test_zarr3_import.py,sha256=JBDyrL57lbZMI9axb9eA1OZnd_Lg-ppfsNV3VvxwVxk,332
74
- numcodecs/tests/test_checksum32.py,sha256=IR1ZXf2XJFh0Vrpxyz4P7RFym2kxtagp-yYDZowicPc,4238
74
+ numcodecs/tests/test_checksum32.py,sha256=D0BV_p3XQ2Dv9jIoI9zEQel-PO25KWYIpUDgrhr6Cf8,4601
75
75
  numcodecs/tests/test_zfpy.py,sha256=g_2txraHDbnBPtbymJXsgAiD6MBH44-JYRkNx9tttYw,2762
76
76
  numcodecs/tests/test_blosc.py,sha256=VixIjcQNlzIdXrs1yvEMA1q7EMAu1jLy_VtRmgjcQU4,8866
77
77
  numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.5.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_11_0_arm64
5
5