numcodecs 0.14.0__cp312-cp312-win_amd64.whl → 0.14.1__cp312-cp312-win_amd64.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,37 +1,37 @@
1
- numcodecs/__init__.py,sha256=akOYICLZW9jHMFepn5orEKPB5XNQ-XmAyKs4lReujWA,3352
2
- numcodecs/_shuffle.cp312-win_amd64.pyd,sha256=sRFdYeaSs3-XSOllim0kmh3Uv-OsT_1vUPCWDd5ogjU,137216
1
+ numcodecs/__init__.py,sha256=9uLJwNm76SSqG2wkqlSocbuGZmsaR-e2ZB1Z6Bl1JiE,3426
2
+ numcodecs/_shuffle.cp312-win_amd64.pyd,sha256=t_-GG-MsLCGUoCGZM6LAezVKn6NRD4WVijrspT8SQvI,136704
3
3
  numcodecs/abc.py,sha256=t_l-aLoyocVHk0pYEPjfcRlctzLeDY2wNyCIr-yCEHk,4632
4
4
  numcodecs/astype.py,sha256=py0m2RrDdDjvEORxWNXaarBE2xKdCkjNWeMf6GCoLg4,2213
5
5
  numcodecs/base64.py,sha256=E9166xLd0qzo9IZGb3PdP2jENITahjeD6krbochvBX8,811
6
6
  numcodecs/bitround.py,sha256=m9gysWTzZH_MA0H7oI3dfBIZh66yxHM4gik8aq6xA_0,2925
7
- numcodecs/blosc.cp312-win_amd64.pyd,sha256=Ry6jIyGZUyLu388pwl-cwd__ZVH0a5sZo5KzvkaT_AU,607744
7
+ numcodecs/blosc.cp312-win_amd64.pyd,sha256=3SzyL93EMg1MpN7IJ4Sm4qDdMrgx1j6E6omERzbX9EY,608256
8
8
  numcodecs/bz2.py,sha256=bS0L4XqzJDw6pU4MUuEF8UgFOHw6mErnqCXZVg8TEiI,1219
9
9
  numcodecs/categorize.py,sha256=EZFF7KyjniCT3LzsitUS3DgJmcNWk1rguTLJemScgJY,3084
10
- numcodecs/checksum32.py,sha256=RmVh7cJpScdgAuy-3unHXgDfPs89RBT8QVDJw-YL04U,5548
10
+ numcodecs/checksum32.py,sha256=GgYbg84gGAH9Jq-ZwATsL6G-bDXI20LQ1gHXg75oh-E,5605
11
11
  numcodecs/compat.py,sha256=ghz0-UpxV0q_mAaiZLZv6BBhJNNLeLTDGirO4Oda_ZM,6711
12
- numcodecs/compat_ext.cp312-win_amd64.pyd,sha256=fM9eaWvyf9fzhGADinMQJqe2nEYnzc4rwE_0faIhlAc,35328
12
+ numcodecs/compat_ext.cp312-win_amd64.pyd,sha256=Y3B5rhUg57bPUl-UCHYrETsEDL3yQ7Ztooo7dGOcmGk,35328
13
13
  numcodecs/delta.py,sha256=nb4KlQULJXXXfbw30W2y3h4g_FPJsh7gVikRTNrr7pQ,3085
14
14
  numcodecs/fixedscaleoffset.py,sha256=tM3faGimeCC2hzjuyPZU7dfPrSXlIf8kU1rLADUFov0,4328
15
- numcodecs/fletcher32.cp312-win_amd64.pyd,sha256=uHlheIn4F3NxbXtDplZMm7EKftqC54IXiXkY9TnVdso,159232
15
+ numcodecs/fletcher32.cp312-win_amd64.pyd,sha256=EBug2qZunwrMMSsEsCF85s_zq7eTtF7bjTMPmZSt968,158720
16
16
  numcodecs/gzip.py,sha256=vPmEDJDkgW14icC-sGeQz1wDUqifhmRBC_B6V-vdEqY,1521
17
- numcodecs/jenkins.cp312-win_amd64.pyd,sha256=arW_AAMsteuksXr9iAW8dD8xpyn8VMiZLp1QYN_XN9I,147968
17
+ numcodecs/jenkins.cp312-win_amd64.pyd,sha256=cf8aspsidQ8Jvln8zjyI3l664rqhelWkVgTGZu8c4po,147968
18
18
  numcodecs/json.py,sha256=VtI1U1zEGotH56zVWnAA7UwKWso1Kukwyzy_mopVIgY,3462
19
- numcodecs/lz4.cp312-win_amd64.pyd,sha256=gK3f8pv-s7J16K11u5LkrhYvg0MT_g-ymH_bCa-JD2E,73216
19
+ numcodecs/lz4.cp312-win_amd64.pyd,sha256=tyDbFnXqgnA-TSC9Y1cVXgNIUljhQGWQ_DOuERAug2M,73216
20
20
  numcodecs/lzma.py,sha256=7rF9ukBOyYWoZ8pf-qdRF7BVjuT5rggrfErW8ogfgTA,2313
21
21
  numcodecs/msgpacks.py,sha256=58AVf8VovnBaFaVakLU3dRHodLMsJUlMe6uVaYSwmfY,2697
22
22
  numcodecs/ndarray_like.py,sha256=CRUhXM5bImhOdY1Gsehy6vzj7-XwobO15WkbOdC4lMo,1961
23
23
  numcodecs/packbits.py,sha256=hEaOSpjUxOTlNAXFvDp5Djo7wwqwuFGaRfEDrB07bDY,2075
24
- numcodecs/pcodec.py,sha256=RUwx3Q22e0JWOJ5RllLpM3CshxU1UKNRggQi0qIjVGs,3168
24
+ numcodecs/pcodec.py,sha256=XhEoeniapMgZTtikihWJZ7JQ8UqMVprsdCqJzt800UY,3147
25
25
  numcodecs/pickles.py,sha256=MEyNRXM6dQC62LBc4X46q83ZSa6L3Ord5rFst3E7wvQ,1343
26
26
  numcodecs/quantize.py,sha256=6cRZolHGF_TToxuB5WhYz7XrirFS9exsr7nKwIzIv6Y,3137
27
27
  numcodecs/registry.py,sha256=B4o8EavOT6inaT2ttOWucErt204F8NvgfDt0qM46fHU,1906
28
28
  numcodecs/shuffle.py,sha256=ty-NJ1bIgsErwmTyJtspSgrrJ4PspQjp6Hb-U2M17hY,1636
29
- numcodecs/version.py,sha256=h6mUOYTUFdP8P3L_pxL0oguxyVeEcwXKJgw7lMiABi0,429
30
- numcodecs/vlen.cp312-win_amd64.pyd,sha256=QdmiEIbijrCMMnikoMQx4RvJvoncPQ8D_t0BfMLhyVs,202752
29
+ numcodecs/version.py,sha256=PmPMi-W0oYwFnGNPqq2XLCoXtDYpahw_1xhTDJEKPu8,429
30
+ numcodecs/vlen.cp312-win_amd64.pyd,sha256=YrxHhZ6t9hct6bSq9hm4LuEJmpnAvcwuqrUbhERbaWU,202240
31
31
  numcodecs/zarr3.py,sha256=ZNGFTV9Kqx7ZdK0PWw5QYPPGGrob4GLO_PcK87m6ZEk,14327
32
32
  numcodecs/zfpy.py,sha256=BBzbxbAfu7QnFgowD-zTcWYFQzso34MA6BsOn2QA5lg,4014
33
33
  numcodecs/zlib.py,sha256=C5TO2qRPyG6SY25lmB9qeFh6yr4IRAqHz0v4RaPvygE,1091
34
- numcodecs/zstd.cp312-win_amd64.pyd,sha256=C4JV7qm0Kwy_9AdWIWnkg_tw47kWKUowkHp5NFELuGc,450048
34
+ numcodecs/zstd.cp312-win_amd64.pyd,sha256=L50B4H84p0qKjLlVkqIPjrd5oFZCfgKzclwv3fU-Fl4,449536
35
35
  numcodecs/tests/__init__.py,sha256=W7MDbDAXcjl7fVmolo3U_30rFkOCb6mWQ8vcByUpu8g,75
36
36
  numcodecs/tests/common.py,sha256=94e6AU1RBb-ipYNyInSuQxA67SIVNSdf3dxJVavrVfQ,12522
37
37
  numcodecs/tests/test_astype.py,sha256=m-l8k4q8jSZrIqviASKxYsaPzzuBG_Y4tUNlIigYbco,2441
@@ -40,7 +40,7 @@ numcodecs/tests/test_bitround.py,sha256=idosc7MlWLWoA93jFFPgfKk1WzazmaLqH3gzCsVV
40
40
  numcodecs/tests/test_blosc.py,sha256=xdmN2nKRbiqJ3xEDB9USCsZau1xagoRgeCwg2mKrOxM,9143
41
41
  numcodecs/tests/test_bz2.py,sha256=iH9BPZ8wtXCEfq52RXOqQ9bmQsTMiy3uujIKNpi2Mqs,1955
42
42
  numcodecs/tests/test_categorize.py,sha256=wug4Im375r3nM1oTIrDVW5woZiZDCsp5uE1Fz6qwIkI,2843
43
- numcodecs/tests/test_checksum32.py,sha256=ZAe1co0bj3BQ8_HKtEHsGyc8zl95X4xUa18oFZxb0Hg,4376
43
+ numcodecs/tests/test_checksum32.py,sha256=1ZbJrUXPFAPZdmKYso0u0lHBUBtdyA-mfiQdmXRqdqs,4755
44
44
  numcodecs/tests/test_compat.py,sha256=QrUZ0emqDH6jEe2gpVlb1i-muN6aQ5H66yDVY_14MkM,3839
45
45
  numcodecs/tests/test_delta.py,sha256=UnHvcBDjHip_rj6OJjmOFC9_JzyKc-fUqawhmBwtTwM,1697
46
46
  numcodecs/tests/test_entrypoints.py,sha256=VwwND3ksTWurNP-BF5mNvWqKxeKjQcc7LpQd_nrFRgA,528
@@ -63,16 +63,16 @@ numcodecs/tests/test_shuffle.py,sha256=Fd1vx8yeOr2JMu4kvTJrVsUtrAJmFBMgbsZUhfB0R
63
63
  numcodecs/tests/test_vlen_array.py,sha256=sUwLaza31Yo0IMnmKCGykRPaB3ha7i0ImiCY9yvHS9o,2574
64
64
  numcodecs/tests/test_vlen_bytes.py,sha256=ujYHFkBn7EultxVkEepbmFriQfO_pJxfh7dEfTxCCco,2566
65
65
  numcodecs/tests/test_vlen_utf8.py,sha256=X0nBvLv1hVDHGz3pIRMP4rVs75lAkXGUb0cRcfZM1Ss,2565
66
- numcodecs/tests/test_zarr3.py,sha256=2CyOSr696oisFfSlWQ-PMOmEWfDfkaLCnlJF0Bp0V04,7795
66
+ numcodecs/tests/test_zarr3.py,sha256=dK2O5b0IHNYAWaLGOydn6YvbtAEozTupXDDoxoih76Y,7784
67
67
  numcodecs/tests/test_zarr3_import.py,sha256=enI8IqSnTynihEQ2mh95UdTZ5Gb8m9Wock6gbg3iLYs,345
68
68
  numcodecs/tests/test_zfpy.py,sha256=lSkKcpGg437poMRQ88EDYdbQVIqKmF0Il-ASdlYkkIY,2866
69
69
  numcodecs/tests/test_zlib.py,sha256=SxgYIyH2bH_eIX7k-9kgPUOXCHEllGPoLSUSn0Qk5rg,2633
70
70
  numcodecs/tests/test_zstd.py,sha256=P-wHnm0wOuclHOoX7danVEvufxKNM3GwYBgHBchzILE,2702
71
71
  numcodecs/tests/package_with_entrypoint/__init__.py,sha256=j0h1AHePXH8ONfd-TMGwKsMW4gBqbgiGOuGP25S9hLE,223
72
- numcodecs-0.14.0.dist-info/LICENSE.txt,sha256=IxxTq7WTy9_G9AbShWjbBcg6x2G3pDlJEIBJN2o95ks,1145
73
- numcodecs-0.14.0.dist-info/METADATA,sha256=wqla9rmVh6C4XkJywDFFGuo40NhFpRqO0Vbv6SCQCBo,3074
74
- numcodecs-0.14.0.dist-info/WHEEL,sha256=URd7-ttCx8Rz55RGV-ajscuaorhma5mfaay8tu-W0vE,101
75
- numcodecs-0.14.0.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
76
- numcodecs-0.14.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
72
+ numcodecs-0.14.1.dist-info/LICENSE.txt,sha256=IxxTq7WTy9_G9AbShWjbBcg6x2G3pDlJEIBJN2o95ks,1145
73
+ numcodecs-0.14.1.dist-info/METADATA,sha256=JV9Kq9F_CRLvxfDM0ptaF5EIAYPNTByg0kiQnCFPXjk,3017
74
+ numcodecs-0.14.1.dist-info/WHEEL,sha256=pWXrJbnZSH-J-PhYmKs2XNn4DHCPNBYq965vsBJBFvA,101
75
+ numcodecs-0.14.1.dist-info/entry_points.txt,sha256=3W3FHKrwE52X3fLq8KdioOtf93lh5KaoGV5t2D10DBI,919
76
+ numcodecs-0.14.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
77
77
  numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=COk3sfJsTt3T00bA2bcUMCuWEhwkQvf4lPHcBDk34qA,62
78
- numcodecs-0.14.0.dist-info/RECORD,,
78
+ numcodecs-0.14.1.dist-info/RECORD,,
@@ -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-win_amd64
5
5