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

Files changed (67) hide show
  1. numcodecs/__init__.py +29 -1
  2. numcodecs/_shuffle.cp312-win_amd64.pyd +0 -0
  3. numcodecs/abc.py +5 -5
  4. numcodecs/astype.py +2 -8
  5. numcodecs/blosc.cp312-win_amd64.pyd +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.cp312-win_amd64.pyd +0 -0
  11. numcodecs/delta.py +2 -8
  12. numcodecs/fixedscaleoffset.py +8 -6
  13. numcodecs/fletcher32.cp312-win_amd64.pyd +0 -0
  14. numcodecs/gzip.py +1 -5
  15. numcodecs/jenkins.cp312-win_amd64.pyd +0 -0
  16. numcodecs/json.py +28 -10
  17. numcodecs/lz4.cp312-win_amd64.pyd +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.cp312-win_amd64.pyd +0 -0
  59. numcodecs/zfpy.py +28 -12
  60. numcodecs/zlib.py +0 -2
  61. numcodecs/zstd.cp312-win_amd64.pyd +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/__init__.py,sha256=81NTMzJ3f_-Afj7EpZncJxROLFfc0gjoA_6YayMl5QQ,3239
2
+ numcodecs/_shuffle.cp312-win_amd64.pyd,sha256=dL_rtwaiqO41UlGfm2Mx73b1AtlwTKTjswncbqMRYxY,137216
3
+ numcodecs/abc.py,sha256=ZoXmpDHp-qCg3XzVw8nFU66GG6-h86SgRHKwLyikL4s,4626
4
+ numcodecs/astype.py,sha256=GvuL9ppZJXE-UYvQ8MEUzAEKMAAKdIqpPjXnmYlVjFE,2249
5
+ numcodecs/base64.py,sha256=E9166xLd0qzo9IZGb3PdP2jENITahjeD6krbochvBX8,811
6
+ numcodecs/bitround.py,sha256=Zab-hK3mnUXa6MlbDk8pxG-DL5jb4P3f0dTnDOEMZ8Q,2905
7
+ numcodecs/blosc.cp312-win_amd64.pyd,sha256=Y6Hx5WB8oIcbp-T6vSu2-rcU5Cf7P8Wpzmo7diKsjc8,614400
8
+ numcodecs/bz2.py,sha256=7bwN98knj2ln5WCPjVPVaHz5RM9jDI4Ld2it1lIWZmQ,1221
9
+ numcodecs/categorize.py,sha256=-kSJTRL2fUZZ6AYQ7aNuzKKhtGi6Zgx5okg0BYMbPEo,3174
10
+ numcodecs/checksum32.py,sha256=ISHgJMayILEw8lZNMs4vmGv1Ion2J40MfLubIXQ1zMA,3256
11
+ numcodecs/compat.py,sha256=JUN87pkAx7jajmcOQ-ODrOCZQOA7cWkSbYhxfAsZwx4,6767
12
+ numcodecs/compat_ext.cp312-win_amd64.pyd,sha256=89yok9WLN5o-ZdXDPrdI_BKyPXdfIJ8ACyVywEND18w,35328
13
+ numcodecs/delta.py,sha256=w4y3Ex6-9zWctJMKLKctIctQAITRVDrEzFibMGWnInc,2915
14
+ numcodecs/fixedscaleoffset.py,sha256=9VSM12-a4pNYXSp_AeVocwl-4ABZyjGKKfhmMFsJpAY,4400
15
+ numcodecs/fletcher32.cp312-win_amd64.pyd,sha256=mlwadxRa8yIjjRb2Uxn-5JkoC-Py8oXbGYnUthGQvjU,158720
16
+ numcodecs/gzip.py,sha256=vPmEDJDkgW14icC-sGeQz1wDUqifhmRBC_B6V-vdEqY,1521
17
+ numcodecs/jenkins.cp312-win_amd64.pyd,sha256=yVPEZvQpC-8CI0tyr8F2WPBrXLakErdnlTDHHnGuQUA,147456
18
+ numcodecs/json.py,sha256=SfTjqIVmaHe3Nvmu_pbIbn3alXJcEvmS9hhPDJFHNww,3477
19
+ numcodecs/lz4.cp312-win_amd64.pyd,sha256=r_OJcy92rHqi5l24Gerz7QaP2mghASorBH1oLH3YV5I,73216
20
+ numcodecs/lzma.py,sha256=zfOrLPwbmKU4lEZVz2wJRI3lOpB9a2EKm2Vgc0MiDS0,2328
21
+ numcodecs/msgpacks.py,sha256=S3BMG6jusA81ZlUomZQG9OtbEVYKpXoMPmsHDCITdUQ,2735
22
+ numcodecs/ndarray_like.py,sha256=A29suZPucCJdGbUz-jFjY5Oionopu66OLSvdu7lLEoA,1930
23
+ numcodecs/packbits.py,sha256=mm1Zt_NMEF0LZlxfZ_5URl6OR-TaMxuWL8lgZOkkJqc,2118
24
+ numcodecs/pcodec.py,sha256=HNcy_lxjZBQopg65aJric733PhOkUbCWc91DfTZxydo,3168
25
+ numcodecs/pickles.py,sha256=bEOubwk7n2ta5MfSbst4LTaQ9BkNrNLBifFCpxu-nFg,1345
26
+ numcodecs/quantize.py,sha256=UYXYx46H-JB5EHjRgvaR6Ud3VE9Kk-ewqnAHgORgOV4,3202
27
+ numcodecs/registry.py,sha256=LRu9a_mJ30zVHczRHAmidVM1M_K1QWpcHTDne1nwrRg,1835
28
+ numcodecs/shuffle.py,sha256=axL_pJ8q74of3yb01_E0n9tw0UxK6akqTVLyihycJD8,1655
29
+ numcodecs/version.py,sha256=05lykHrH23QyCVjLX8ztt6Z-iY-ZTNO8aeHrS3ihXm4,429
30
+ numcodecs/vlen.cp312-win_amd64.pyd,sha256=E2DD1DDP37MOD5kAyjLdeXox81hAHlhmYPh2MesT33c,203264
31
+ numcodecs/zfpy.py,sha256=43HlmQ-rm57DYDrmBT9KoR_nko5t0qzAurMjcBnm_uI,3932
32
+ numcodecs/zlib.py,sha256=611YAieWqFCPYMvTHoN2IiaAJAOCbEy6YPhso_aWe18,1093
33
+ numcodecs/zstd.cp312-win_amd64.pyd,sha256=xJNmpnOUNSyuZSZvt3yErV4iY_oWuWbIHdmNqxrCaa0,458240
34
+ numcodecs/tests/__init__.py,sha256=W7MDbDAXcjl7fVmolo3U_30rFkOCb6mWQ8vcByUpu8g,75
35
+ numcodecs/tests/common.py,sha256=zEGK9LGHALrycj0UvvcC2mmzSQwxmfiu5WJn9c3DmU0,12535
36
+ numcodecs/tests/test_astype.py,sha256=59565lksVd3lX-CSuxRHedHw_ZL5926KqzeNheNXous,2445
37
+ numcodecs/tests/test_base64.py,sha256=EYzsx_KA9KxEZtlNy70bicrOaArl-dIK8gqppdQWalA,2402
38
+ numcodecs/tests/test_bitround.py,sha256=2lWV1z3TFmDW4u8ZZFbnVXAeNv6MbzzWbFnpP3RPy38,2441
39
+ numcodecs/tests/test_blosc.py,sha256=1KG2qE_YYRZYk4bI37LCFvFBFeGBR3RofOjZ3mVR_hE,9149
40
+ numcodecs/tests/test_bz2.py,sha256=cRA5sWK72hes69B1zjKkLgn-SfwtosBJVFGTW4QCi7w,1961
41
+ numcodecs/tests/test_categorize.py,sha256=GO2L-Hsj9amtuIF7TeXdy1VSGnm9sJsSEBx5PfZpoSw,2847
42
+ numcodecs/tests/test_checksum32.py,sha256=mp3rZ9ayaacAPa5jlWphMr_5RCrCxjeoTVvL4S9tl_0,1535
43
+ numcodecs/tests/test_compat.py,sha256=wl1Bia4ofWWNJAeg4H0gZE-RiEsl6ZBmtoIeZFC2Ubo,3729
44
+ numcodecs/tests/test_delta.py,sha256=5VvwrRkaEBr4VUhqvCYx5tLPNNqr7_9SZ7oQTREpiuA,1634
45
+ numcodecs/tests/test_entrypoints.py,sha256=vfMtIQ7iAWQOVrs2E1s47xILXqLN9g6G_c_l8PPVTRg,532
46
+ numcodecs/tests/test_entrypoints_backport.py,sha256=mhpt5b4tnAcZyoCU-GInDAseriHeZQxjG_1l3QQfE7c,1064
47
+ numcodecs/tests/test_fixedscaleoffset.py,sha256=6DZEK-2f8uLd0CgCni69KOY3SvepoBlWvJzNTzK72KU,2322
48
+ numcodecs/tests/test_fletcher32.py,sha256=J5ND8xcy4QQKYUYBaH_VyBzKm5biFoV9H5Fp9NsVe3s,1512
49
+ numcodecs/tests/test_gzip.py,sha256=CTeOrKvSwmZAF9w3cPE4NImmbMs8J7EFDLYsIl7_2b8,3041
50
+ numcodecs/tests/test_jenkins.py,sha256=tZV4dcuVlh3LYJ0ToxygRVF9MXIi4TMOq7xo7j6_kfE,4660
51
+ numcodecs/tests/test_json.py,sha256=2mLLN2FezGPH_7vVnMObttW1BovvSGo9KRoMw4KX1fE,2373
52
+ numcodecs/tests/test_lz4.py,sha256=9EugYoKIafiZrWaz5Bvs3GE0xuzI3zncaYDVbv4JkCA,2442
53
+ numcodecs/tests/test_lzma.py,sha256=LUdt9sCi6JeRrkF-Uu3aoszbjZUyoGOzy3jSeU2fRiE,2719
54
+ numcodecs/tests/test_msgpacks.py,sha256=Hhv_zQwjARGxNmlA1iPUhZoMUwSH9GrdX3Autq4l60c,3951
55
+ numcodecs/tests/test_ndarray_like.py,sha256=GXx-XTSKK8wGLlEeuvrgdFDQ3uGtV55-fKKjzN6G0gc,1321
56
+ numcodecs/tests/test_packbits.py,sha256=yhh3bm8onBlCtjzhU3TQEpqupQ6m-Ze2N06rXvctHq0,1032
57
+ numcodecs/tests/test_pcodec.py,sha256=i4N4VlfF0_VaM8zOl775zsKT8O3vvCWWevRv8hF3iSs,2110
58
+ numcodecs/tests/test_pickles.py,sha256=FGOx41-ss545a4wr4Cm-Ha5_kvgGPoG2y3COshk60uk,1742
59
+ numcodecs/tests/test_quantize.py,sha256=BTeFsY2vU4GFLYYIWIFIl3zraayaHNUyM6FB7gLf33w,2233
60
+ numcodecs/tests/test_registry.py,sha256=DBjeV7oVVkiCPC2NFpJEyyyAJ83RC0IoS6qtt7hCDl4,1101
61
+ numcodecs/tests/test_shuffle.py,sha256=h0SiMVfjTXST1jyen8nc3ZaqHqKktkIT_MVjyHAX-wo,4871
62
+ numcodecs/tests/test_vlen_array.py,sha256=uQ8G6sXIp80nOQqPTjvZPBixVNuLoLOYpWzxF32jgro,2564
63
+ numcodecs/tests/test_vlen_bytes.py,sha256=DAsUU3xjWAFdodi0tMXqfMJ2ypS9E_Du6mdnhuNDLLY,2556
64
+ numcodecs/tests/test_vlen_utf8.py,sha256=Jvfm5M6KAhguZLIVneTowdFwZOUS7Uv_7TBXz-MVm00,2559
65
+ numcodecs/tests/test_zfpy.py,sha256=Tof3KpxbWizPz-z4e7INAu7xffaIOWv1xvMqSt_4zFc,2780
66
+ numcodecs/tests/test_zlib.py,sha256=_kkUuxcmPtOZMytaJp2GZdaGSWhgv9-M_ui3MHgagx0,2639
67
+ numcodecs/tests/test_zstd.py,sha256=YrjdA3mcGt0BW_8CK6Es9fzKM1B4UpZpJCrYx65_R58,2702
68
+ numcodecs/tests/package_with_entrypoint/__init__.py,sha256=j0h1AHePXH8ONfd-TMGwKsMW4gBqbgiGOuGP25S9hLE,223
69
+ numcodecs-0.13.0.dist-info/LICENSE.txt,sha256=IxxTq7WTy9_G9AbShWjbBcg6x2G3pDlJEIBJN2o95ks,1145
70
+ numcodecs-0.13.0.dist-info/METADATA,sha256=4OAqyurwjCJMfrGJ8pVsoljIlwERbRfCkA0bd4TIGBg,3005
71
+ numcodecs-0.13.0.dist-info/WHEEL,sha256=zUKlehupiwlnUEPaWzoeU3i_GPyMnWLKYSUI9sqi8Vs,101
72
+ numcodecs-0.13.0.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
73
+ numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=COk3sfJsTt3T00bA2bcUMCuWEhwkQvf4lPHcBDk34qA,62
74
+ numcodecs-0.13.0.dist-info/RECORD,,
@@ -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-win_amd64
5
5
 
@@ -1,72 +0,0 @@
1
- numcodecs/__init__.py,sha256=Z2H2IIRz6mVUTlNnBqB3OdMkTtUsP9Sc2VVy2QWHJxI,3120
2
- numcodecs/_shuffle.cp312-win_amd64.pyd,sha256=qmlUhloUJqc8DQXfyVFX01VSp_H_mvTccm2zYA51aVA,136704
3
- numcodecs/abc.py,sha256=aWG78t7Ma9ZL1jNHXwMGcCEo3vWg1zflS5X1ix1Sawg,4618
4
- numcodecs/astype.py,sha256=G19tZlwCpwR2Ep5pV2TxoJEL_kRZwq_41vZacRqW6Lg,2321
5
- numcodecs/base64.py,sha256=E9166xLd0qzo9IZGb3PdP2jENITahjeD6krbochvBX8,811
6
- numcodecs/bitround.py,sha256=Zab-hK3mnUXa6MlbDk8pxG-DL5jb4P3f0dTnDOEMZ8Q,2905
7
- numcodecs/blosc.cp312-win_amd64.pyd,sha256=HDPWMDNRr2VSMTiETYNb_DrkAPh4_ZeMWzq5gqcsrX4,531968
8
- numcodecs/bz2.py,sha256=BCjZGN9Z5MPXV8GBlY4QYnXN4edQK71z_uW2XxSsOZc,1225
9
- numcodecs/categorize.py,sha256=KkjdyF1UPKKWnZmna2rCrNa7x8MFNZ6mJx-b9CuJ458,3121
10
- numcodecs/checksum32.py,sha256=o7kPGST0WwJm44-dxAixTACOK1_82xr9lYfj_Oqcp7c,3262
11
- numcodecs/compat.py,sha256=rYCj17OPZqbO_uDXxDnjBKvuH5Je3XgBiY6Pp_JHOpo,6799
12
- numcodecs/compat_ext.cp312-win_amd64.pyd,sha256=Q4OyIpnVVZGdlrjjkepCsf7TDAZte47CmoXuuWsuJ6I,35328
13
- numcodecs/delta.py,sha256=gisugqNfx3kWMYkRWnnGeS_ESKPNWZUTKwNeSK0mWDQ,2949
14
- numcodecs/fixedscaleoffset.py,sha256=sWk9azetw6g5RzF5GNb-xJePipFKsoS6VILw23rmX34,4334
15
- numcodecs/fletcher32.cp312-win_amd64.pyd,sha256=VqPY0aVE765dWb04zcd04QRdnkGA-DQ22oCvlunbKYQ,158208
16
- numcodecs/gzip.py,sha256=Hd43wOQGT2Dc8GELaRmw9CxG7FQmDu80U0ZbHD_xLds,1583
17
- numcodecs/jenkins.cp312-win_amd64.pyd,sha256=ZCawkJdZww9AgAD9R39nV9WvKV4ERoB2msGM-KU49_s,147456
18
- numcodecs/json.py,sha256=HpoZNT3c8OnTqh_NO8aHA7_gmi1VdKSoeEfc4aJUMic,3309
19
- numcodecs/lz4.cp312-win_amd64.pyd,sha256=kVDHqqsuDcBM772UX4S9TrV1mFAIF8mHWFRtg6ly4mk,72704
20
- numcodecs/lzma.py,sha256=3SSkEXReHu2K9owGfqtx31HMBgbE_yUt2JuxrQkBazk,2204
21
- numcodecs/msgpacks.py,sha256=pS1-8llpDBHsXSWgdHXXDcOtBqIUNCv-LIneJyilK4M,2729
22
- numcodecs/ndarray_like.py,sha256=l30KXwqJhJi1YIpzqR0zz3O-SZkths7T7Vk0nyvqtWE,1994
23
- numcodecs/packbits.py,sha256=sj_lnftAi0SmBvqRbXbpsA0pvrtf7hiIdPXpWaZwmK4,2124
24
- numcodecs/pickles.py,sha256=wl5Eeiw4DJ6nAc3EDEryBHZfSh1brvWTEQHmPwEQRBw,1366
25
- numcodecs/quantize.py,sha256=JWPa_Iy4lIt6CfQuMJGgByU3TZs3TSZKqlMTNTouYEc,3170
26
- numcodecs/registry.py,sha256=cE8gIsfBLkRXdcPZEUX7SuhbCa9z-f97Vuye1nMNLNQ,2075
27
- numcodecs/shuffle.py,sha256=Wo7By4dk7nILJIw959Iwv6nGjUmgLy3x7G348tnn2p8,1683
28
- numcodecs/version.py,sha256=e9BVIyXG0c1vB1nLdKSF6LAW3KJGhkCbnuHMQq44jdI,429
29
- numcodecs/vlen.cp312-win_amd64.pyd,sha256=3O0F2zHPW6pXvlJam7PCh0ix7pyI8WrqkoJ5uN0ZP50,198144
30
- numcodecs/zfpy.py,sha256=kiqxkZiXkMz_Dd6sSq6bzkdSf0YIV1P7IwmIKjtTuRw,3187
31
- numcodecs/zlib.py,sha256=hgB0gp3LMC0jud-ZZwITdW1CTkSbcY1nT5SveucDYhk,1097
32
- numcodecs/zstd.cp312-win_amd64.pyd,sha256=N6qmYFEYuPdVRb8sULd4U1aXHew7-5PheK7m6LqhbYw,354304
33
- numcodecs/tests/__init__.py,sha256=W7MDbDAXcjl7fVmolo3U_30rFkOCb6mWQ8vcByUpu8g,75
34
- numcodecs/tests/common.py,sha256=SsRWjkzaUhMBkoYCKEc0ECvIGzHpr7NeQZVdUXbp7Bk,12217
35
- numcodecs/tests/test_astype.py,sha256=U-j0xw7F7qvt7jGB_GfYjxgXh-62JCe_VEQFxCxNyMs,2463
36
- numcodecs/tests/test_base64.py,sha256=wypoCk_3mO3PKYEHjkpl9afnhMjjm76TgaxtdRiDCMw,2426
37
- numcodecs/tests/test_bitround.py,sha256=2lWV1z3TFmDW4u8ZZFbnVXAeNv6MbzzWbFnpP3RPy38,2441
38
- numcodecs/tests/test_blosc.py,sha256=7zcTiAp8HdYIlt4VY0XsFwGQnFQ0y8WxyrZ3mk6mXYk,9390
39
- numcodecs/tests/test_bz2.py,sha256=7wAHnOAA4Qim7flagqqCQ9wynubyyPhFK9JID2RsJuI,2022
40
- numcodecs/tests/test_categorize.py,sha256=j6GqlcZF966_YLNX7SN68P7DIpS_2ZilqBiSUfqzpjc,2995
41
- numcodecs/tests/test_checksum32.py,sha256=wNJeZEsKT5aRHie5yuO6A5KedhIt_ThpoUMHVVtiH8Q,1579
42
- numcodecs/tests/test_compat.py,sha256=EBejWsmXgQPLgAudgmhNI51jZ-yUHVhkph26l9U9zoM,3747
43
- numcodecs/tests/test_delta.py,sha256=JCQhvTVhVC6XlaYN60xDUUDKgSurOH4_kM-FH9fbeuw,1647
44
- numcodecs/tests/test_entrypoints.py,sha256=vfMtIQ7iAWQOVrs2E1s47xILXqLN9g6G_c_l8PPVTRg,532
45
- numcodecs/tests/test_entrypoints_backport.py,sha256=9C53gISwuyMCz2_4IP63OA-6giofMwUQNTyIP3Jg5xw,1011
46
- numcodecs/tests/test_fixedscaleoffset.py,sha256=xkScQbHvhZXGlmWA01mUd-S0voCdp8NYWrT8QMXlDA0,2335
47
- numcodecs/tests/test_fletcher32.py,sha256=S55hOIK2qeMY3URuh-WEzm60ThTmbCSD4SFkVcFFdF8,1438
48
- numcodecs/tests/test_gzip.py,sha256=B3wuMaIGQu3PtoFrsUs4q0uSyuafe2aDi3B_6S91hTs,3102
49
- numcodecs/tests/test_jenkins.py,sha256=Ma2AWKD_e0iGBpHKAPOhkZhDGV_UQnR1HeIlb4d3E84,4719
50
- numcodecs/tests/test_json.py,sha256=57w3I9pmLAlniLXtQ1ImMlXp-kpwuT5YNM3fZo2Wgo0,2264
51
- numcodecs/tests/test_lz4.py,sha256=PS4pIf87rI1pOpAh-wZ-tna0XgNmPzPbEfPSABeoXP4,2551
52
- numcodecs/tests/test_lzma.py,sha256=4xGzi1R289g2mGxLZoyem7YBDZTLsMw98XAJ3VyzZWs,2779
53
- numcodecs/tests/test_msgpacks.py,sha256=uGVIoki_0rHOeWnYEsGQfWZ3QOKLxToLuKCv_l9x9sw,3958
54
- numcodecs/tests/test_ndarray_like.py,sha256=GXx-XTSKK8wGLlEeuvrgdFDQ3uGtV55-fKKjzN6G0gc,1321
55
- numcodecs/tests/test_packbits.py,sha256=3TRP3isY54e8Ul4A8EoPIJ-iwCFqapUPPegWE_PLx_Y,1045
56
- numcodecs/tests/test_pickles.py,sha256=dH_wdN6oUQVoLxDL98NaUY73l4aXe6cBUcLuRF34rjI,1752
57
- numcodecs/tests/test_quantize.py,sha256=Ep33u5mLtDvFh3uozOPJTCag2gqvNGH6J4ujMBLj0N0,2214
58
- numcodecs/tests/test_registry.py,sha256=DBjeV7oVVkiCPC2NFpJEyyyAJ83RC0IoS6qtt7hCDl4,1101
59
- numcodecs/tests/test_shuffle.py,sha256=bTlQKsz_BEKBwc-ZHAF1-oXz49vtlklBCK5AhpVI_a4,4791
60
- numcodecs/tests/test_vlen_array.py,sha256=4BoHl1vcy9860QTY6iyXg8R3JMmcSAQMlkJN3LhygVc,2738
61
- numcodecs/tests/test_vlen_bytes.py,sha256=hcSIez4yQ9DyzGD1ztsTLK7VsKgXu3k_AD0O3AvCdVQ,2640
62
- numcodecs/tests/test_vlen_utf8.py,sha256=EezWpgtwiMgJdUfW1au5Ey6z0rQ92It-OLnhvwsa80Q,2483
63
- numcodecs/tests/test_zfpy.py,sha256=bv5VTNR6muOzR3wrzLQW1YSNnh_DxnDGNr3hkMBsoss,2852
64
- numcodecs/tests/test_zlib.py,sha256=nByWcabHOkVSiLynfOyF6DpidVm5Ja2YTEXOYigg40c,2700
65
- numcodecs/tests/test_zstd.py,sha256=0Sth-Eq1zyt6CIJZGTHfRpGeroTROxAXm3sDIaIl_Q4,2261
66
- numcodecs/tests/package_with_entrypoint/__init__.py,sha256=gxBPrRls2Bz2eMk-5sPMICPdgT2U9TM-Hfz2P0ryFk4,225
67
- numcodecs-0.12.1.dist-info/LICENSE.txt,sha256=IxxTq7WTy9_G9AbShWjbBcg6x2G3pDlJEIBJN2o95ks,1145
68
- numcodecs-0.12.1.dist-info/METADATA,sha256=J7U6iUMWPrXoeb8ey1-s7rK4aQBCfRYVQANN4cPwrGA,2869
69
- numcodecs-0.12.1.dist-info/WHEEL,sha256=aDrgWfEd5Ac7WJzHsr90rcMGiH4MHbAXoCWpyP5CEBc,102
70
- numcodecs-0.12.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
71
- numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt,sha256=COk3sfJsTt3T00bA2bcUMCuWEhwkQvf4lPHcBDk34qA,62
72
- numcodecs-0.12.1.dist-info/RECORD,,