numcodecs 0.12.1__cp312-cp312-macosx_11_0_arm64.whl → 0.13.0__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.

Files changed (67) hide show
  1. numcodecs/__init__.py +29 -1
  2. numcodecs/_shuffle.cpython-312-darwin.so +0 -0
  3. numcodecs/abc.py +5 -5
  4. numcodecs/astype.py +2 -8
  5. numcodecs/blosc.cpython-312-darwin.so +0 -0
  6. numcodecs/bz2.py +0 -2
  7. numcodecs/categorize.py +14 -13
  8. numcodecs/checksum32.py +2 -5
  9. numcodecs/compat.py +2 -6
  10. numcodecs/compat_ext.cpython-312-darwin.so +0 -0
  11. numcodecs/delta.py +2 -8
  12. numcodecs/fixedscaleoffset.py +8 -6
  13. numcodecs/fletcher32.cpython-312-darwin.so +0 -0
  14. numcodecs/gzip.py +1 -5
  15. numcodecs/jenkins.cpython-312-darwin.so +0 -0
  16. numcodecs/json.py +28 -10
  17. numcodecs/lz4.cpython-312-darwin.so +0 -0
  18. numcodecs/lzma.py +14 -8
  19. numcodecs/msgpacks.py +13 -9
  20. numcodecs/ndarray_like.py +7 -12
  21. numcodecs/packbits.py +1 -3
  22. numcodecs/pcodec.py +89 -0
  23. numcodecs/pickles.py +1 -2
  24. numcodecs/quantize.py +9 -7
  25. numcodecs/registry.py +2 -6
  26. numcodecs/shuffle.py +2 -4
  27. numcodecs/tests/common.py +36 -22
  28. numcodecs/tests/package_with_entrypoint/__init__.py +0 -1
  29. numcodecs/tests/test_astype.py +7 -5
  30. numcodecs/tests/test_base64.py +8 -8
  31. numcodecs/tests/test_blosc.py +22 -19
  32. numcodecs/tests/test_bz2.py +12 -8
  33. numcodecs/tests/test_categorize.py +9 -11
  34. numcodecs/tests/test_checksum32.py +8 -4
  35. numcodecs/tests/test_compat.py +7 -10
  36. numcodecs/tests/test_delta.py +6 -2
  37. numcodecs/tests/test_entrypoints_backport.py +5 -1
  38. numcodecs/tests/test_fixedscaleoffset.py +6 -2
  39. numcodecs/tests/test_fletcher32.py +13 -6
  40. numcodecs/tests/test_gzip.py +12 -8
  41. numcodecs/tests/test_jenkins.py +41 -42
  42. numcodecs/tests/test_json.py +17 -7
  43. numcodecs/tests/test_lz4.py +14 -12
  44. numcodecs/tests/test_lzma.py +13 -9
  45. numcodecs/tests/test_msgpacks.py +8 -3
  46. numcodecs/tests/test_packbits.py +6 -2
  47. numcodecs/tests/test_pcodec.py +81 -0
  48. numcodecs/tests/test_pickles.py +11 -7
  49. numcodecs/tests/test_quantize.py +6 -2
  50. numcodecs/tests/test_shuffle.py +34 -23
  51. numcodecs/tests/test_vlen_array.py +12 -13
  52. numcodecs/tests/test_vlen_bytes.py +11 -5
  53. numcodecs/tests/test_vlen_utf8.py +12 -4
  54. numcodecs/tests/test_zfpy.py +3 -9
  55. numcodecs/tests/test_zlib.py +12 -8
  56. numcodecs/tests/test_zstd.py +32 -13
  57. numcodecs/version.py +2 -2
  58. numcodecs/vlen.cpython-312-darwin.so +0 -0
  59. numcodecs/zfpy.py +28 -12
  60. numcodecs/zlib.py +0 -2
  61. numcodecs/zstd.cpython-312-darwin.so +0 -0
  62. {numcodecs-0.12.1.dist-info → numcodecs-0.13.0.dist-info}/METADATA +6 -3
  63. numcodecs-0.13.0.dist-info/RECORD +74 -0
  64. {numcodecs-0.12.1.dist-info → numcodecs-0.13.0.dist-info}/WHEEL +1 -1
  65. numcodecs-0.12.1.dist-info/RECORD +0 -72
  66. {numcodecs-0.12.1.dist-info → numcodecs-0.13.0.dist-info}/LICENSE.txt +0 -0
  67. {numcodecs-0.12.1.dist-info → numcodecs-0.13.0.dist-info}/top_level.txt +0 -0
@@ -7,19 +7,20 @@ try:
7
7
  from numcodecs.vlen import VLenArray
8
8
  except ImportError: # pragma: no cover
9
9
  raise unittest.SkipTest("vlen-array not available")
10
- from numcodecs.tests.common import (check_config, check_repr,
11
- check_encode_decode_array,
12
- check_backwards_compatibility,
13
- assert_array_items_equal)
10
+ from numcodecs.tests.common import (
11
+ check_config,
12
+ check_repr,
13
+ check_encode_decode_array,
14
+ check_backwards_compatibility,
15
+ assert_array_items_equal,
16
+ )
14
17
 
15
18
 
16
19
  arrays = [
17
- np.array([np.array([1, 2, 3]),
18
- np.array([4]),
19
- np.array([5, 6])] * 300, dtype=object),
20
- np.array([np.array([1, 2, 3]),
21
- np.array([4]),
22
- np.array([5, 6])] * 300, dtype=object).reshape(90, 10),
20
+ np.array([np.array([1, 2, 3]), np.array([4]), np.array([5, 6])] * 300, dtype=object),
21
+ np.array([np.array([1, 2, 3]), np.array([4]), np.array([5, 6])] * 300, dtype=object).reshape(
22
+ 90, 10
23
+ ),
23
24
  ]
24
25
 
25
26
 
@@ -93,7 +94,5 @@ def test_encode_none():
93
94
  codec = VLenArray(int)
94
95
  enc = codec.encode(a)
95
96
  dec = codec.decode(enc)
96
- expect = np.array([np.array([1, 3]),
97
- np.array([]),
98
- np.array([4, 7])], dtype=object)
97
+ expect = np.array([np.array([1, 3]), np.array([]), np.array([4, 7])], dtype=object)
99
98
  assert_array_items_equal(expect, dec)
@@ -7,9 +7,14 @@ try:
7
7
  from numcodecs.vlen import VLenBytes
8
8
  except ImportError: # pragma: no cover
9
9
  raise unittest.SkipTest("vlen-bytes not available")
10
- from numcodecs.tests.common import (check_config, check_repr, check_encode_decode_array,
11
- check_backwards_compatibility, greetings,
12
- assert_array_items_equal)
10
+ from numcodecs.tests.common import (
11
+ check_config,
12
+ check_repr,
13
+ check_encode_decode_array,
14
+ check_backwards_compatibility,
15
+ greetings,
16
+ assert_array_items_equal,
17
+ )
13
18
 
14
19
 
15
20
  greetings_bytes = [g.encode('utf-8') for g in greetings]
@@ -19,8 +24,9 @@ arrays = [
19
24
  np.array([b'foo', b'bar', b'baz'] * 300, dtype=object),
20
25
  np.array(greetings_bytes * 100, dtype=object),
21
26
  np.array([b'foo', b'bar', b'baz'] * 300, dtype=object).reshape(90, 10),
22
- np.array(greetings_bytes * 1000, dtype=object).reshape(len(greetings_bytes), 100, 10,
23
- order='F'),
27
+ np.array(greetings_bytes * 1000, dtype=object).reshape(
28
+ len(greetings_bytes), 100, 10, order='F'
29
+ ),
24
30
  ]
25
31
 
26
32
 
@@ -9,9 +9,14 @@ try:
9
9
  from numcodecs.vlen import VLenUTF8
10
10
  except ImportError: # pragma: no cover
11
11
  raise unittest.SkipTest("vlen-utf8 not available")
12
- from numcodecs.tests.common import (check_config, check_repr, check_encode_decode_array,
13
- check_backwards_compatibility, greetings,
14
- assert_array_items_equal)
12
+ from numcodecs.tests.common import (
13
+ check_config,
14
+ check_repr,
15
+ check_encode_decode_array,
16
+ check_backwards_compatibility,
17
+ greetings,
18
+ assert_array_items_equal,
19
+ )
15
20
 
16
21
 
17
22
  arrays = [
@@ -77,8 +82,11 @@ def test_decode_errors():
77
82
  codec.decode(enc, out=np.zeros(10, dtype='i4'))
78
83
 
79
84
 
80
- def test_encode_utf8():
85
+ @pytest.mark.parametrize("writable", [True, False])
86
+ def test_encode_utf8(writable):
81
87
  a = np.array(['foo', None, 'bar'], dtype=object)
88
+ if not writable:
89
+ a.setflags(write=False)
82
90
  codec = VLenUTF8()
83
91
  enc = codec.encode(a)
84
92
  dec = codec.decode(enc)
@@ -38,12 +38,8 @@ arrays = [
38
38
  np.random.normal(loc=1000, scale=1, size=(100, 10)),
39
39
  np.random.normal(loc=1000, scale=1, size=(10, 10, 10)),
40
40
  np.random.normal(loc=1000, scale=1, size=(2, 5, 10, 10)),
41
- np.random.randint(-(2 ** 31), -(2 ** 31) + 20, size=1000, dtype="i4").reshape(
42
- 100, 10
43
- ),
44
- np.random.randint(-(2 ** 63), -(2 ** 63) + 20, size=1000, dtype="i8").reshape(
45
- 10, 10, 10
46
- ),
41
+ np.random.randint(-(2**31), -(2**31) + 20, size=1000, dtype="i4").reshape(100, 10),
42
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype="i8").reshape(10, 10, 10),
47
43
  ]
48
44
 
49
45
 
@@ -72,9 +68,7 @@ def test_backwards_compatibility():
72
68
  codec = [code]
73
69
  check_backwards_compatibility(ZFPY.codec_id, arrays, codec)
74
70
  else:
75
- check_backwards_compatibility(
76
- ZFPY.codec_id, arrays[: len(arrays) - 2], codecs
77
- )
71
+ check_backwards_compatibility(ZFPY.codec_id, arrays[: len(arrays) - 2], codecs)
78
72
 
79
73
 
80
74
  def test_err_decode_object_buffer():
@@ -6,10 +6,14 @@ import pytest
6
6
 
7
7
 
8
8
  from numcodecs.zlib import Zlib
9
- from numcodecs.tests.common import (check_encode_decode, check_config, check_repr,
10
- check_backwards_compatibility,
11
- check_err_decode_object_buffer,
12
- check_err_encode_object_buffer)
9
+ from numcodecs.tests.common import (
10
+ check_encode_decode,
11
+ check_config,
12
+ check_repr,
13
+ check_backwards_compatibility,
14
+ check_err_decode_object_buffer,
15
+ check_err_encode_object_buffer,
16
+ )
13
17
 
14
18
 
15
19
  codecs = [
@@ -35,10 +39,10 @@ arrays = [
35
39
  np.random.randint(0, 2**60, size=1000, dtype='u8').view('m8[ns]'),
36
40
  np.random.randint(0, 2**25, size=1000, dtype='u8').view('M8[m]'),
37
41
  np.random.randint(0, 2**25, size=1000, dtype='u8').view('m8[m]'),
38
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('M8[ns]'),
39
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('m8[ns]'),
40
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('M8[m]'),
41
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('m8[m]'),
42
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('M8[ns]'),
43
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('m8[ns]'),
44
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('M8[m]'),
45
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('m8[m]'),
42
46
  ]
43
47
 
44
48
 
@@ -8,15 +8,17 @@ import pytest
8
8
  try:
9
9
  from numcodecs.zstd import Zstd
10
10
  except ImportError: # pragma: no cover
11
- pytest.skip(
12
- "numcodecs.zstd not available", allow_module_level=True
13
- )
11
+ pytest.skip("numcodecs.zstd not available", allow_module_level=True)
14
12
 
15
13
 
16
- from numcodecs.tests.common import (check_encode_decode, check_config, check_repr,
17
- check_backwards_compatibility,
18
- check_err_decode_object_buffer,
19
- check_err_encode_object_buffer)
14
+ from numcodecs.tests.common import (
15
+ check_encode_decode,
16
+ check_config,
17
+ check_repr,
18
+ check_backwards_compatibility,
19
+ check_err_decode_object_buffer,
20
+ check_err_encode_object_buffer,
21
+ )
20
22
 
21
23
 
22
24
  codecs = [
@@ -27,6 +29,9 @@ codecs = [
27
29
  Zstd(level=10),
28
30
  Zstd(level=22),
29
31
  Zstd(level=100),
32
+ Zstd(checksum=True),
33
+ Zstd(level=0, checksum=True),
34
+ Zstd(level=22, checksum=True),
30
35
  ]
31
36
 
32
37
 
@@ -34,8 +39,8 @@ codecs = [
34
39
  # mix of shapes: 1D, 2D, 3D
35
40
  # mix of orders: C, F
36
41
  arrays = [
37
- np.arange(1000, dtype='i4'),
38
- np.linspace(1000, 1001, 1000, dtype='f8'),
42
+ np.arange(1000, dtype="i4"),
43
+ np.linspace(1000, 1001, 1000, dtype="f8"),
39
44
  np.random.normal(loc=1000, scale=1, size=(100, 10)),
40
45
  np.random.randint(0, 2, size=1000, dtype=bool).reshape(100, 10, order='F'),
41
46
  np.random.choice([b'a', b'bb', b'ccc'], size=1000).reshape(10, 10, 10),
@@ -43,10 +48,10 @@ arrays = [
43
48
  np.random.randint(0, 2**60, size=1000, dtype='u8').view('m8[ns]'),
44
49
  np.random.randint(0, 2**25, size=1000, dtype='u8').view('M8[m]'),
45
50
  np.random.randint(0, 2**25, size=1000, dtype='u8').view('m8[m]'),
46
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('M8[ns]'),
47
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('m8[ns]'),
48
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('M8[m]'),
49
- np.random.randint(-2**63, -2**63 + 20, size=1000, dtype='i8').view('m8[m]'),
51
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('M8[ns]'),
52
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('m8[ns]'),
53
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('M8[m]'),
54
+ np.random.randint(-(2**63), -(2**63) + 20, size=1000, dtype='i8').view('m8[m]'),
50
55
  ]
51
56
 
52
57
 
@@ -74,3 +79,17 @@ def test_err_decode_object_buffer():
74
79
 
75
80
  def test_err_encode_object_buffer():
76
81
  check_err_encode_object_buffer(Zstd())
82
+
83
+
84
+ def test_checksum():
85
+ data = np.arange(0, 64, dtype="uint8")
86
+ assert len(Zstd(level=0, checksum=False).encode(data)) + 4 == len(
87
+ Zstd(level=0, checksum=True).encode(data)
88
+ )
89
+
90
+
91
+ def test_native_functions():
92
+ # Note, these assertions might need to be changed for new versions of zstd
93
+ assert Zstd.default_level == 3
94
+ assert Zstd.min_level == -131072
95
+ assert Zstd.max_level == 22
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.12.1'
16
- __version_tuple__ = version_tuple = (0, 12, 1)
15
+ __version__ = version = '0.13.0'
16
+ __version_tuple__ = version_tuple = (0, 13, 0)
Binary file
numcodecs/zfpy.py CHANGED
@@ -1,12 +1,28 @@
1
1
  from contextlib import suppress
2
+ from importlib.metadata import PackageNotFoundError, version
3
+ import warnings
2
4
 
3
5
  _zfpy = None
4
- with suppress(ImportError):
5
- import zfpy as _zfpy
6
6
 
7
+ _zfpy_version: tuple = ()
8
+ with suppress(PackageNotFoundError):
9
+ _zfpy_version = tuple(map(int, version("zfpy").split(".")))
10
+
11
+ if _zfpy_version:
12
+ # Check NumPy version
13
+ _numpy_version: tuple = tuple(map(int, version("numpy").split('.')))
14
+ if _numpy_version >= (2, 0, 0) and _zfpy_version <= (1, 0, 1): # pragma: no cover
15
+ _zfpy_version = ()
16
+ warnings.warn(
17
+ "NumPy version >= 2.0.0 detected. The zfpy library is incompatible with this version of NumPy. "
18
+ "Please downgrade to NumPy < 2.0.0 or wait for an update from zfpy.",
19
+ UserWarning,
20
+ )
21
+ else:
22
+ with suppress(ImportError):
23
+ import zfpy as _zfpy
7
24
 
8
25
  if _zfpy:
9
-
10
26
  from .abc import Codec
11
27
  from .compat import ndarray_copy, ensure_contiguous_ndarray, ensure_bytes
12
28
  import numpy as np
@@ -52,25 +68,25 @@ if _zfpy:
52
68
  self.precision = precision
53
69
 
54
70
  def encode(self, buf):
55
-
56
71
  # not flatten c-order array and raise exception for f-order array
57
72
  if not isinstance(buf, np.ndarray):
58
- raise TypeError("The zfp codec does not support none numpy arrays."
59
- f" Your buffers were {type(buf)}.")
73
+ raise TypeError(
74
+ "The zfp codec does not support none numpy arrays."
75
+ f" Your buffers were {type(buf)}."
76
+ )
60
77
  if buf.flags.c_contiguous:
61
78
  flatten = False
62
79
  else:
63
- raise ValueError("The zfp codec does not support F order arrays. "
64
- f"Your arrays flags were {buf.flags}.")
80
+ raise ValueError(
81
+ "The zfp codec does not support F order arrays. "
82
+ f"Your arrays flags were {buf.flags}."
83
+ )
65
84
  buf = ensure_contiguous_ndarray(buf, flatten=flatten)
66
85
 
67
86
  # do compression
68
- return _zfpy.compress_numpy(
69
- buf, write_header=True, **self.compression_kwargs
70
- )
87
+ return _zfpy.compress_numpy(buf, write_header=True, **self.compression_kwargs)
71
88
 
72
89
  def decode(self, buf, out=None):
73
-
74
90
  # normalise inputs
75
91
  buf = ensure_bytes(buf)
76
92
  if out is not None:
numcodecs/zlib.py CHANGED
@@ -21,7 +21,6 @@ class Zlib(Codec):
21
21
  self.level = level
22
22
 
23
23
  def encode(self, buf):
24
-
25
24
  # normalise inputs
26
25
  buf = ensure_contiguous_ndarray(buf)
27
26
 
@@ -30,7 +29,6 @@ class Zlib(Codec):
30
29
 
31
30
  # noinspection PyMethodMayBeStatic
32
31
  def decode(self, buf, out=None):
33
-
34
32
  # normalise inputs
35
33
  buf = ensure_contiguous_ndarray(buf)
36
34
  if out is not None:
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numcodecs
3
- Version: 0.12.1
3
+ Version: 0.13.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
@@ -18,26 +18,29 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
18
  Classifier: Operating System :: Unix
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
- Requires-Python: >=3.8
21
+ Requires-Python: >=3.10
22
22
  Description-Content-Type: text/x-rst
23
23
  License-File: LICENSE.txt
24
24
  Requires-Dist: numpy >=1.7
25
25
  Provides-Extra: docs
26
26
  Requires-Dist: sphinx <7.0.0 ; extra == 'docs'
27
27
  Requires-Dist: sphinx-issues ; extra == 'docs'
28
+ Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
28
29
  Requires-Dist: numpydoc ; extra == 'docs'
29
30
  Requires-Dist: mock ; extra == 'docs'
30
31
  Provides-Extra: msgpack
31
32
  Requires-Dist: msgpack ; extra == 'msgpack'
33
+ Provides-Extra: pcodec
34
+ Requires-Dist: pcodec >=0.2.0 ; extra == 'pcodec'
32
35
  Provides-Extra: test
33
36
  Requires-Dist: coverage ; extra == 'test'
34
- Requires-Dist: flake8 ; extra == 'test'
35
37
  Requires-Dist: pytest ; extra == 'test'
36
38
  Requires-Dist: pytest-cov ; extra == 'test'
37
39
  Provides-Extra: test_extras
38
40
  Requires-Dist: importlib-metadata ; extra == 'test_extras'
39
41
  Provides-Extra: zfpy
40
42
  Requires-Dist: zfpy >=1.0.0 ; extra == 'zfpy'
43
+ Requires-Dist: numpy <2.0.0 ; extra == 'zfpy'
41
44
 
42
45
  Numcodecs
43
46
  =========
@@ -0,0 +1,74 @@
1
+ numcodecs-0.13.0.dist-info/RECORD,,
2
+ numcodecs-0.13.0.dist-info/WHEEL,sha256=uYhvtN-KOJ0DEJHtDr42R67ubQzG52FQntm6_RCLY5k,109
3
+ numcodecs-0.13.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
4
+ numcodecs-0.13.0.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
5
+ numcodecs-0.13.0.dist-info/METADATA,sha256=EnBvGBN-a1cHHuAAo-md-Ej9OvVnSDMkYv2WPvekPTs,2941
6
+ numcodecs/jenkins.cpython-312-darwin.so,sha256=aj2GnhtSgOnR5zBJFvuHr0o7F2PHg6VUGDlmuN2gwi8,203712
7
+ numcodecs/lzma.py,sha256=EdtnTKMPtaMhrKDTascS4qHGJyynnNkIre9Hk0kQX84,2252
8
+ numcodecs/astype.py,sha256=ITGi7lfKWZqV-KMfS6I5QCkTrF4ltZy0ICD8qZMmsUY,2171
9
+ numcodecs/gzip.py,sha256=7TyUzc9oliPqKA58VV7fNkCi_c9PP04MioAKG7a1oV0,1469
10
+ numcodecs/zstd.cpython-312-darwin.so,sha256=10DBh_xzTr5qZelbMt1xoJYVDoKHZyQrdia3R08A73k,730408
11
+ numcodecs/base64.py,sha256=i-WpnY7A-vT-71By_tVBvHi41O4DzuqYyB829eNd29E,784
12
+ numcodecs/bz2.py,sha256=vH40fv5Kv_c7qgR2DtpyXN3WQ35cUTS2KkCWjacfl3c,1175
13
+ numcodecs/version.py,sha256=Y4u7iBqF7QJAbpBNSFA2tk5t2mrMGrI-nonxUAhVkPU,413
14
+ numcodecs/compat.py,sha256=xHTwTwSIIqITpM9M2vwBMMwMrCW_LKYdW0DLwrlrU_c,6557
15
+ numcodecs/_shuffle.cpython-312-darwin.so,sha256=esnocvsFNOYK2WRSecqd24hWakzYoNyVgFjcJDtqVz8,182736
16
+ numcodecs/checksum32.py,sha256=UkHX31K5fYCbflyO9Y8B3kM_QU3QSeNUVxoNYtUI2fI,3160
17
+ numcodecs/ndarray_like.py,sha256=Kq8YIcIIsBjsNWwNzHdcquL1f91h-uxfl5OSf3OHkak,1865
18
+ numcodecs/quantize.py,sha256=cn4mJwqf8CmnYanWACxfw9gJbqTtQv5z-Lt90SWN2xI,3096
19
+ numcodecs/registry.py,sha256=MU5SkOG4EgtcJH9pByPDU3WmJQWEbCsQk4w-HAMeEsE,1763
20
+ numcodecs/blosc.cpython-312-darwin.so,sha256=cFsJg5naa_zmNp_LikobVRxgJiZBd_PL1_RJQpuqXFc,1041704
21
+ numcodecs/pickles.py,sha256=xYiQNNLjnA-eHrwSfGa909oj1TNntmC87H7nqAdnvlw,1290
22
+ numcodecs/fixedscaleoffset.py,sha256=1RdoZyqNnCKAsSeIy6VQ3XRv1aM5ZRW5NMu9d4r2gnU,4262
23
+ numcodecs/lz4.cpython-312-darwin.so,sha256=C2ZI3LFTfAvNVSJMSMQWDfchfPTAoH3keNum51N7fTk,248632
24
+ numcodecs/__init__.py,sha256=8h4GUpaA5v91BqUwkMIpBbZlJCX3MHv7bAmdJCBgygY,3094
25
+ numcodecs/bitround.py,sha256=8OC1VTw3MWuPoEe2tc5G8fgqkZzdhKZV6GwlyRWvz8s,2825
26
+ numcodecs/vlen.cpython-312-darwin.so,sha256=3n2A6Rtq9O_U3c6u_SYmx9UztPn9Na5RqCd0Sk_pFE8,261560
27
+ numcodecs/zlib.py,sha256=9vpziIDFLqvh2IF_2y5E9fblXVTpMqv26f_kNY4L6CE,1050
28
+ numcodecs/shuffle.py,sha256=eFemSB1O5sCXzNXm3VE0TD9pl14SxNUbkPJQ7DAxY84,1594
29
+ numcodecs/delta.py,sha256=QKl0-KooqsGVqE6fqPTPGtW0O6uNbak3H9UrbVHNasg,2817
30
+ numcodecs/zfpy.py,sha256=2KqM0kz3EJ2A8DVaFfS3dbl-ekdIhzNVWHRjxN7sYvg,3820
31
+ numcodecs/msgpacks.py,sha256=LrAPsKnadupS6gQRcWG2O3Dz8HwMiCBSzx92ciLyeFM,2646
32
+ numcodecs/fletcher32.cpython-312-darwin.so,sha256=VBOartst4FS5Pe15t7Jn50ZAJkA-6mQiWo34ApbbWD4,206336
33
+ numcodecs/compat_ext.cpython-312-darwin.so,sha256=Mxgq3FszXqxzVCBZPyH2c1lNhJ5ZTzijzr8mXms1Wyw,78416
34
+ numcodecs/packbits.py,sha256=2KlynlWhOLSKc3lC5UAgnW5V0Lc6mZYtORmNDxl-dvM,2032
35
+ numcodecs/categorize.py,sha256=SbFu1QI4LCe96AX-pHCtGQOrRZVGf6YsQMx8irK1VZk,3066
36
+ numcodecs/json.py,sha256=XqHA-_MugMetEbqz30EC6mx_B-_L2XhX57VZfDVJbsI,3369
37
+ numcodecs/abc.py,sha256=wiIZCSXVrM9LfTRUpT8wX80uSuepq0_bR_3Vd3W1GBA,4498
38
+ numcodecs/pcodec.py,sha256=9AWyGYkH_BDdeU8DZDuRCF83Gfoq51oUbLqH8EkEv4U,3079
39
+ numcodecs/tests/test_categorize.py,sha256=RSWgiAYLlLkFJmiDEtY_Zdif3zDc7D6Vz_554Zy1s48,2758
40
+ numcodecs/tests/test_registry.py,sha256=XHFGER4pDqLCxP4RlsjE9GV3gv3Q1vqGonDDhTOhOcU,1061
41
+ numcodecs/tests/test_vlen_utf8.py,sha256=B92qA2j4wGl4BqYfn9UW9BESxdr89Hju0pdkIToG9gw,2465
42
+ numcodecs/tests/test_bitround.py,sha256=NiIrsP4No9TVhahngk_47LGV3OhdEaTNEusJaFLOARg,2359
43
+ numcodecs/tests/test_gzip.py,sha256=LIJUrWPfDuCQosf8PQGvYRhJsaeC0k6ExjJIjOPhmYM,2928
44
+ numcodecs/tests/test_delta.py,sha256=RGcGKlZuYYdqk-TiVu-8vPtp5PbGC3yHxE7FjkW914o,1572
45
+ numcodecs/tests/test_lzma.py,sha256=nGE-ceeKp6i2hCs8M68GYq0b0inI7N_DAOPdzOvNWNM,2626
46
+ numcodecs/tests/test_bz2.py,sha256=HJyklhbqwZxzdOVbhybTDcPXB9itx1g6n5tnwbyD45U,1892
47
+ numcodecs/tests/__init__.py,sha256=Q6sNFjGUjcEU3MvCUd-PDtmYcS79Yvys3wbWWXvU5qY,72
48
+ numcodecs/tests/test_pickles.py,sha256=jnKQYqzI5a5WvZ0swCFcejdNeGmWg4zw5SAeiUtDl58,1680
49
+ numcodecs/tests/test_quantize.py,sha256=5rj1Yr61pIWg-QfXAdQALK5ocWZy-SjZkKUQMX2BYAo,2154
50
+ numcodecs/tests/test_entrypoints_backport.py,sha256=oUo1Wuj9War_PGpN8cOj1jm9iVnhJLG9yCb7YDRkVsU,1028
51
+ numcodecs/tests/test_pcodec.py,sha256=iNINLqBzJSLLjqvqldDOgl3VhaIQ89pteFFZ76CYk0s,2029
52
+ numcodecs/tests/test_lz4.py,sha256=S81GuIHFqfrbzo-mdrS3Dqg_8KBbHgWXfhvozb5nP4c,2356
53
+ numcodecs/tests/test_msgpacks.py,sha256=lbiK7Yx4gc2aE-1Tle5K6jHajSDKUEV_NhcVlMilwfk,3825
54
+ numcodecs/tests/test_astype.py,sha256=UUsaH8fGTFnK1di1dEfyZJ6d2XnG0dchZhYQ6n3blpE,2369
55
+ numcodecs/tests/test_jenkins.py,sha256=sPgyTTNjh3zr_9VtNq87rC1XSO48tvzT5pJXek5qdlo,4510
56
+ numcodecs/tests/test_fletcher32.py,sha256=hNf2zSAi16k4222qI2k-n5X4GgswVBfOqvKHSgSoRxQ,1456
57
+ numcodecs/tests/test_packbits.py,sha256=eLxAXePF3WftN7OXN2fIPHiUSZlnK7uExLaw35uvmmI,991
58
+ numcodecs/tests/common.py,sha256=bnERoKr6lY5m9-TsvcTQMrtEAdjRggB2IGHOu2JRZUk,12177
59
+ numcodecs/tests/test_base64.py,sha256=yqAdwXx71Q_NUwA73qpxXqHLRtDKEU0py2oqJhkpv3A,2318
60
+ numcodecs/tests/test_shuffle.py,sha256=52P4jh6Ybu_R1DKyJ9VIah04LOUktxr5gD8E55qQ8OA,4700
61
+ numcodecs/tests/test_fixedscaleoffset.py,sha256=7aslAgBL2_JX2NgzsZcm7ppKXGE314lyri_Z2I3EC2c,2250
62
+ numcodecs/tests/test_compat.py,sha256=-bMeoZ2vAlDd1JDrbbQIItv5HfWDTP6T2Ozy6zEQIPY,3619
63
+ numcodecs/tests/test_zlib.py,sha256=YOED0smWeJAjUslUvLdLiMcUvDCZhC_MCJ6k0oBmMWs,2542
64
+ numcodecs/tests/test_json.py,sha256=cySWJsEv4XJRpq2VT9MtT7_rhZ985QkRzWny0ZOsYA8,2288
65
+ numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
66
+ numcodecs/tests/test_vlen_array.py,sha256=Rwz7LpdwEwQbz1CYXG9SnriKOO3LqQei3erOM0BCzws,2466
67
+ numcodecs/tests/test_zstd.py,sha256=xCGA3ZSgZeC7ebCNXUz3gylmeHquFILYkiYslSsD-DQ,2607
68
+ numcodecs/tests/test_vlen_bytes.py,sha256=t27UnbGJYWYTLqCiX8RklTPhQZf7ROkYhvMt_mvPjak,2462
69
+ numcodecs/tests/test_entrypoints.py,sha256=5jteo39-CkVGXjcHF8_777kyueiH8BUKCFad1rfxZeI,507
70
+ numcodecs/tests/test_checksum32.py,sha256=BsjUOqpv-sFenwerAd2fhhbVfmIn-5Bj4-vUVJDd6qQ,1474
71
+ numcodecs/tests/test_zfpy.py,sha256=uWT8QppZyD2tMlOBiYYoOBNh6g31yxg4e2kDdsiqFCg,2678
72
+ numcodecs/tests/test_blosc.py,sha256=JVzaKN4A_N6t-lukZfdKZHsD-cCi4Ny6IHjgfyRJ5m4,8869
73
+ numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
74
+ numcodecs/tests/package_with_entrypoint/__init__.py,sha256=wLyrk73nqKO8rcFtA_sXlcC8PKMzdYbbBRY8eH8Xc10,212
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_11_0_arm64
5
5
 
@@ -1,72 +0,0 @@
1
- numcodecs-0.12.1.dist-info/RECORD,,
2
- numcodecs-0.12.1.dist-info/WHEEL,sha256=FCrbbeH_Uuw2ZMaB8nW-JE7XeUWVfF-XtWcVJYU0Zm8,110
3
- numcodecs-0.12.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
4
- numcodecs-0.12.1.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
5
- numcodecs-0.12.1.dist-info/METADATA,sha256=flCMbiCAr78DCVG-3SDegXSfWQQ9UTkBs7jNU_MHz-I,2808
6
- numcodecs/jenkins.cpython-312-darwin.so,sha256=kWpDx1tTt1tQ_FGOSKblB0kiBt3eQrGdij61glxWkYg,207738
7
- numcodecs/lzma.py,sha256=TCcruY3WcnNSBWIdKr_QgYDIdFnAcVr5KpKInwZTz_A,2134
8
- numcodecs/astype.py,sha256=JICvhAMlZ2E9ebYs-4TWH84zawHtytXxXzUKeED_AoM,2237
9
- numcodecs/gzip.py,sha256=nCjiZO9JXeuJeaeh_ZEhSE9jovKpmpe35NdTTnNF_xc,1527
10
- numcodecs/zstd.cpython-312-darwin.so,sha256=rIDXtbwsmfKtB9d2tJ-TSjwR9uxAQecmrnHs1_nCTNo,994071
11
- numcodecs/base64.py,sha256=i-WpnY7A-vT-71By_tVBvHi41O4DzuqYyB829eNd29E,784
12
- numcodecs/bz2.py,sha256=2IlYZH8KosgjjR2LlIgphQnFudF6OJf6g7FgYL_Ur8g,1177
13
- numcodecs/version.py,sha256=OSJc7-JxViAvW4SmGUZQQX05ZpGw9KopFINBSBZ_tHs,413
14
- numcodecs/compat.py,sha256=OYUhLcqTOL5GebMmwt_ai06QyMKT8sD5rr659g60_34,6585
15
- numcodecs/_shuffle.cpython-312-darwin.so,sha256=jK4tG1vSlUbiAOvy2EbGlYntGFJ4_wZVmx2C3lb5PXQ,186315
16
- numcodecs/checksum32.py,sha256=WVTvvFRUOoo-qtsl0NAGXkDSZN7PgJUklmA1tPH7WSk,3163
17
- numcodecs/ndarray_like.py,sha256=Whv0llXRm3U-4OwOP13DQI84mOzB_kDDL-0ydErRQuc,1924
18
- numcodecs/quantize.py,sha256=tuhNs6Fpm8e_xciQhq2CPlZ9MuhwXklhLgBkdty8dzk,3066
19
- numcodecs/registry.py,sha256=FcI5PEcSrGpBfRHwc7EFBSgha2Pi8sqLu99wW_d2Kug,1999
20
- numcodecs/blosc.cpython-312-darwin.so,sha256=uS1hGTbtO64pVFTUIYD5kfMBSftQZnv2qgzg7wkgS80,1309880
21
- numcodecs/pickles.py,sha256=38YqN1p9HX8pvbbyoX5Wt0FAMyBu_qsKJGClJSylyGI,1310
22
- numcodecs/fixedscaleoffset.py,sha256=qKYhhuV6iFe65JHwmtups_YBnRMHmrgZUXoT9tKGNjQ,4198
23
- numcodecs/lz4.cpython-312-darwin.so,sha256=kQhcvzAtBPdWgl_llD1I5bRBYqYmBaL21ATvjVL9rig,251206
24
- numcodecs/__init__.py,sha256=2-cY1hkKqP09So5QydFWuCZ7tQlNfDH5YbrvuyIS1IA,3003
25
- numcodecs/bitround.py,sha256=8OC1VTw3MWuPoEe2tc5G8fgqkZzdhKZV6GwlyRWvz8s,2825
26
- numcodecs/vlen.cpython-312-darwin.so,sha256=jwMB23ZnqakrDdNWUZmXLxEQB8yPO_cJYKKL3vXUvCE,267463
27
- numcodecs/zlib.py,sha256=yQJDzZVE2GKhwh8nMAG45SJbHa7GkLD6Nd1XqwRJrFQ,1052
28
- numcodecs/shuffle.py,sha256=Di5plJ7vCnxB6kKqysRcwATsXEYibF_dDH98AvkZM0A,1620
29
- numcodecs/delta.py,sha256=AupP5tlupLBpW3CNP8ZQuMz4-y7ZkvY5nMbIx2fpQTM,2845
30
- numcodecs/zfpy.py,sha256=Mf-LkQ1PMc-5KMyLSFapD2VLVPP3GhePSTIH0t5xUh0,3091
31
- numcodecs/msgpacks.py,sha256=0caIIKpFwQkTv1aaH4-qjUDhbk5URa8Fwxznpx40ASg,2644
32
- numcodecs/fletcher32.cpython-312-darwin.so,sha256=YR91nx9STUDwUtSpepj6A1p2y6AAVPM9vV31hjH4AJE,210733
33
- numcodecs/compat_ext.cpython-312-darwin.so,sha256=I6aFetCRPb26VEerbMEsY3pS4qOtLhsgb9V9iKLgrb4,79053
34
- numcodecs/packbits.py,sha256=54xf9fGzSJrl-Z9x5xIYQlKaCL2OlLUIC4u2R54L8pM,2036
35
- numcodecs/categorize.py,sha256=o9fFmsFGrbWako6Nacn2J3heCzquVuLzSCLcBQvrHQs,3014
36
- numcodecs/json.py,sha256=WQeGmh-_hgl8kvB3fgqkb-8rV0pE0kba2WsXpQ9KloQ,3219
37
- numcodecs/abc.py,sha256=cNwgyMdjy9fHllpwCBva18cVtya1zez-PCyC5isS4N8,4490
38
- numcodecs/tests/test_categorize.py,sha256=Yy12kGRT1ttsVAckFg0NQwefOIiV3oGT7lR_VKM81pI,2904
39
- numcodecs/tests/test_registry.py,sha256=XHFGER4pDqLCxP4RlsjE9GV3gv3Q1vqGonDDhTOhOcU,1061
40
- numcodecs/tests/test_vlen_utf8.py,sha256=KR2AqQEJDtYDtPZeDEu7Xxr4dfuxNICBkwyADUs-jyQ,2397
41
- numcodecs/tests/test_bitround.py,sha256=NiIrsP4No9TVhahngk_47LGV3OhdEaTNEusJaFLOARg,2359
42
- numcodecs/tests/test_gzip.py,sha256=jyfMpX_estTtBz_Npnrzz5SaLS1J6r3kX13ooKLRDmU,2993
43
- numcodecs/tests/test_delta.py,sha256=y_zCIDlv-Z8YOXal6Gn4iXgrJnid_rCWCPOh3H6Wa9A,1589
44
- numcodecs/tests/test_lzma.py,sha256=2gV9lZcrIRn6aPOKXTJYD9MpIMSBfVUB_zLzTcwNGAQ,2690
45
- numcodecs/tests/test_bz2.py,sha256=X7pW3DKs_BUVn4-dM4CvjpU-JqpmtF1eRNwtmyULnLM,1957
46
- numcodecs/tests/__init__.py,sha256=Q6sNFjGUjcEU3MvCUd-PDtmYcS79Yvys3wbWWXvU5qY,72
47
- numcodecs/tests/test_pickles.py,sha256=wSMCc_0lid2ROi045LPbmIVdNhi154-TIORrRQEYY9k,1694
48
- numcodecs/tests/test_quantize.py,sha256=mdsVLJzawEyARr-uEw5PrLm9PAKCPZykZGWx9y7EQM4,2139
49
- numcodecs/tests/test_entrypoints_backport.py,sha256=K1EubZKB8KaegAhrS1VfY79wCOTmwkxxjSSIYMuXevI,979
50
- numcodecs/tests/test_lz4.py,sha256=lHFkzmBVO1n65E1ShV4i2NKG0j0LMW6kcChcFC1NQLw,2467
51
- numcodecs/tests/test_msgpacks.py,sha256=QE5A111OOfpCDuOnBak0M1PnblBNU2TRh-4vUEQL0aU,3837
52
- numcodecs/tests/test_astype.py,sha256=3WsyeJcGdYL-5PfVmnLr1KjICBxt9u0iI3We_A94KR8,2389
53
- numcodecs/tests/test_jenkins.py,sha256=8mNOi0kpdphQw7P_2woa6Yab2pvyCCF98F7IGNaw5Hw,4568
54
- numcodecs/tests/test_fletcher32.py,sha256=tjCecHxwEZ0vWrgUmBpCHwhNH9q1HHAnbZsuWfXJCfY,1389
55
- numcodecs/tests/test_packbits.py,sha256=I9hNe_RQcxk4L6821l5akUAgKz6TMwK5EPzP5wJEEnc,1008
56
- numcodecs/tests/common.py,sha256=cHGqMpurac2ky2uypWUKrhJcKWtpbvJpxkJNwFY7OMQ,11873
57
- numcodecs/tests/test_base64.py,sha256=CjMiBnKQZQucnFIfrAqeXhgiQ2SlL5rLySzKDAB-Q2Y,2342
58
- numcodecs/tests/test_shuffle.py,sha256=IVlboxidzN_MxtZNVuykkPiY8UweA1yRiqhSWJGTaZM,4631
59
- numcodecs/tests/test_fixedscaleoffset.py,sha256=BUdXfpF5fq9-m3RA4KXc9SStxGofrwxMTaPNJrW13d4,2267
60
- numcodecs/tests/test_compat.py,sha256=5iz27yq-jiYG67GATG4KFhtNXy2xhz81KNuyqt7-Axc,3634
61
- numcodecs/tests/test_zlib.py,sha256=JBoM4F7fV4RYh_RVO1t5z7UFt-YEmfW6OWrwe4eYfpU,2607
62
- numcodecs/tests/test_json.py,sha256=PoFvdP2p57HPL2hQUq3vY0ILHmsVksYvpWcHWHAv7xI,2189
63
- numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
64
- numcodecs/tests/test_vlen_array.py,sha256=BogbC24RnqPwQ6kNMI-2QEe7dRb60ONqvRT8GrK3m9A,2639
65
- numcodecs/tests/test_zstd.py,sha256=oje7Tiq5O0oiuv6IJ_VmZDupfowUXwljrC8tGsHIfsc,2185
66
- numcodecs/tests/test_vlen_bytes.py,sha256=N0_PQhTkd64b7CnRqBP60KvS2rKLv7CSRWtsNvTw9Ko,2552
67
- numcodecs/tests/test_entrypoints.py,sha256=5jteo39-CkVGXjcHF8_777kyueiH8BUKCFad1rfxZeI,507
68
- numcodecs/tests/test_checksum32.py,sha256=HqW03403kqpQT_M5XGeULS9yNXhYnEeURSJ60pnOJyk,1522
69
- numcodecs/tests/test_zfpy.py,sha256=IOszOu9uDNYhWUDyI05Zs1c0ps8hSGKFr19nfrDCB2g,2744
70
- numcodecs/tests/test_blosc.py,sha256=0ha84SOt1YlD7PyWMvchKSrfPnXYqctaASjhi3ZoZqk,9113
71
- numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=wel2k9KStuNez__clm2tjAwrcXiP17De8yNScHYtQZU,60
72
- numcodecs/tests/package_with_entrypoint/__init__.py,sha256=TdfeEfuD2vuUDgc5w6l27hw8jL4afqCWNaQ5_V2IYac,213