numcodecs 0.12.1__cp312-cp312-macosx_11_0_arm64.whl → 0.13.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 +33 -7
- numcodecs/_shuffle.cpython-312-darwin.so +0 -0
- numcodecs/abc.py +4 -6
- numcodecs/astype.py +2 -10
- numcodecs/bitround.py +0 -1
- numcodecs/blosc.cpython-312-darwin.so +0 -0
- numcodecs/bz2.py +1 -4
- numcodecs/categorize.py +12 -18
- numcodecs/checksum32.py +3 -8
- numcodecs/compat.py +6 -12
- numcodecs/compat_ext.cpython-312-darwin.so +0 -0
- numcodecs/delta.py +4 -11
- numcodecs/fixedscaleoffset.py +5 -9
- numcodecs/fletcher32.cpython-312-darwin.so +0 -0
- numcodecs/gzip.py +1 -5
- numcodecs/jenkins.cpython-312-darwin.so +0 -0
- numcodecs/json.py +35 -18
- numcodecs/lz4.cpython-312-darwin.so +0 -0
- numcodecs/lzma.py +9 -10
- numcodecs/msgpacks.py +13 -12
- numcodecs/ndarray_like.py +11 -16
- numcodecs/packbits.py +1 -4
- numcodecs/pcodec.py +89 -0
- numcodecs/pickles.py +2 -3
- numcodecs/quantize.py +7 -11
- numcodecs/registry.py +4 -8
- numcodecs/shuffle.py +5 -7
- numcodecs/tests/common.py +42 -32
- numcodecs/tests/package_with_entrypoint/__init__.py +0 -1
- numcodecs/tests/test_astype.py +7 -7
- numcodecs/tests/test_base64.py +10 -13
- numcodecs/tests/test_bitround.py +0 -1
- numcodecs/tests/test_blosc.py +22 -22
- numcodecs/tests/test_bz2.py +12 -11
- numcodecs/tests/test_categorize.py +10 -14
- numcodecs/tests/test_checksum32.py +8 -7
- numcodecs/tests/test_compat.py +8 -13
- numcodecs/tests/test_delta.py +7 -5
- numcodecs/tests/test_entrypoints.py +0 -1
- numcodecs/tests/test_entrypoints_backport.py +8 -5
- numcodecs/tests/test_fixedscaleoffset.py +7 -6
- numcodecs/tests/test_fletcher32.py +13 -6
- numcodecs/tests/test_gzip.py +12 -11
- numcodecs/tests/test_jenkins.py +41 -42
- numcodecs/tests/test_json.py +17 -7
- numcodecs/tests/test_lz4.py +14 -15
- numcodecs/tests/test_lzma.py +15 -14
- numcodecs/tests/test_msgpacks.py +10 -8
- numcodecs/tests/test_packbits.py +6 -4
- numcodecs/tests/test_pcodec.py +80 -0
- numcodecs/tests/test_pickles.py +11 -8
- numcodecs/tests/test_quantize.py +7 -6
- numcodecs/tests/test_registry.py +4 -4
- numcodecs/tests/test_shuffle.py +34 -26
- numcodecs/tests/test_vlen_array.py +14 -16
- numcodecs/tests/test_vlen_bytes.py +13 -8
- numcodecs/tests/test_vlen_utf8.py +14 -9
- numcodecs/tests/test_zfpy.py +7 -17
- numcodecs/tests/test_zlib.py +12 -11
- numcodecs/tests/test_zstd.py +32 -16
- numcodecs/version.py +2 -2
- numcodecs/vlen.cpython-312-darwin.so +0 -0
- numcodecs/zfpy.py +35 -20
- numcodecs/zlib.py +1 -4
- numcodecs/zstd.cpython-312-darwin.so +0 -0
- {numcodecs-0.12.1.dist-info → numcodecs-0.13.1.dist-info}/METADATA +8 -5
- numcodecs-0.13.1.dist-info/RECORD +74 -0
- {numcodecs-0.12.1.dist-info → numcodecs-0.13.1.dist-info}/WHEEL +1 -1
- numcodecs-0.12.1.dist-info/RECORD +0 -72
- {numcodecs-0.12.1.dist-info → numcodecs-0.13.1.dist-info}/LICENSE.txt +0 -0
- {numcodecs-0.12.1.dist-info → numcodecs-0.13.1.dist-info}/top_level.txt +0 -0
numcodecs/version.py
CHANGED
|
Binary file
|
numcodecs/zfpy.py
CHANGED
|
@@ -1,15 +1,33 @@
|
|
|
1
|
+
import warnings
|
|
1
2
|
from contextlib import suppress
|
|
3
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
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
|
+
stacklevel=2,
|
|
21
|
+
)
|
|
22
|
+
else:
|
|
23
|
+
with suppress(ImportError):
|
|
24
|
+
import zfpy as _zfpy
|
|
7
25
|
|
|
8
26
|
if _zfpy:
|
|
27
|
+
import numpy as np
|
|
9
28
|
|
|
10
29
|
from .abc import Codec
|
|
11
|
-
from .compat import
|
|
12
|
-
import numpy as np
|
|
30
|
+
from .compat import ensure_bytes, ensure_contiguous_ndarray, ndarray_copy
|
|
13
31
|
|
|
14
32
|
# noinspection PyShadowingBuiltins
|
|
15
33
|
class ZFPY(Codec):
|
|
@@ -52,25 +70,25 @@ if _zfpy:
|
|
|
52
70
|
self.precision = precision
|
|
53
71
|
|
|
54
72
|
def encode(self, buf):
|
|
55
|
-
|
|
56
73
|
# not flatten c-order array and raise exception for f-order array
|
|
57
74
|
if not isinstance(buf, np.ndarray):
|
|
58
|
-
raise TypeError(
|
|
59
|
-
|
|
75
|
+
raise TypeError(
|
|
76
|
+
"The zfp codec does not support none numpy arrays."
|
|
77
|
+
f" Your buffers were {type(buf)}."
|
|
78
|
+
)
|
|
60
79
|
if buf.flags.c_contiguous:
|
|
61
80
|
flatten = False
|
|
62
81
|
else:
|
|
63
|
-
raise ValueError(
|
|
64
|
-
|
|
82
|
+
raise ValueError(
|
|
83
|
+
"The zfp codec does not support F order arrays. "
|
|
84
|
+
f"Your arrays flags were {buf.flags}."
|
|
85
|
+
)
|
|
65
86
|
buf = ensure_contiguous_ndarray(buf, flatten=flatten)
|
|
66
87
|
|
|
67
88
|
# do compression
|
|
68
|
-
return _zfpy.compress_numpy(
|
|
69
|
-
buf, write_header=True, **self.compression_kwargs
|
|
70
|
-
)
|
|
89
|
+
return _zfpy.compress_numpy(buf, write_header=True, **self.compression_kwargs)
|
|
71
90
|
|
|
72
91
|
def decode(self, buf, out=None):
|
|
73
|
-
|
|
74
92
|
# normalise inputs
|
|
75
93
|
buf = ensure_bytes(buf)
|
|
76
94
|
if out is not None:
|
|
@@ -86,11 +104,8 @@ if _zfpy:
|
|
|
86
104
|
return dec
|
|
87
105
|
|
|
88
106
|
def __repr__(self):
|
|
89
|
-
|
|
90
|
-
type(self).__name__,
|
|
91
|
-
self.
|
|
92
|
-
self.
|
|
93
|
-
self.rate,
|
|
94
|
-
self.precision,
|
|
107
|
+
return (
|
|
108
|
+
f"{type(self).__name__}(mode={self.mode!r}, "
|
|
109
|
+
f"tolerance={self.tolerance}, rate={self.rate}, "
|
|
110
|
+
f"precision={self.precision})"
|
|
95
111
|
)
|
|
96
|
-
return r
|
numcodecs/zlib.py
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import zlib as _zlib
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
from .abc import Codec
|
|
5
|
-
from .compat import
|
|
4
|
+
from .compat import ensure_contiguous_ndarray, ndarray_copy
|
|
6
5
|
|
|
7
6
|
|
|
8
7
|
class Zlib(Codec):
|
|
@@ -21,7 +20,6 @@ class Zlib(Codec):
|
|
|
21
20
|
self.level = level
|
|
22
21
|
|
|
23
22
|
def encode(self, buf):
|
|
24
|
-
|
|
25
23
|
# normalise inputs
|
|
26
24
|
buf = ensure_contiguous_ndarray(buf)
|
|
27
25
|
|
|
@@ -30,7 +28,6 @@ class Zlib(Codec):
|
|
|
30
28
|
|
|
31
29
|
# noinspection PyMethodMayBeStatic
|
|
32
30
|
def decode(self, buf, out=None):
|
|
33
|
-
|
|
34
31
|
# normalise inputs
|
|
35
32
|
buf = ensure_contiguous_ndarray(buf)
|
|
36
33
|
if out is not None:
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: numcodecs
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.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
|
|
@@ -18,31 +18,34 @@ 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.
|
|
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
|
-
Requires-Dist: sphinx
|
|
26
|
+
Requires-Dist: sphinx ; 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
|
=========
|
|
44
47
|
|
|
45
|
-
Numcodecs is a Python package providing buffer compression and transformation
|
|
48
|
+
Numcodecs is a Python package providing buffer compression and transformation
|
|
46
49
|
codecs for use in data storage and communication applications.
|
|
47
50
|
|
|
48
51
|
.. image:: https://readthedocs.org/projects/numcodecs/badge/?version=latest
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
numcodecs-0.13.1.dist-info/RECORD,,
|
|
2
|
+
numcodecs-0.13.1.dist-info/WHEEL,sha256=lWey-nzGdePMz7fsIJ1fIMVKiFg5IkOcUVqkuIpdbws,109
|
|
3
|
+
numcodecs-0.13.1.dist-info/top_level.txt,sha256=JkHllzt6IuVudg4Tk--wF-yfPPsdVOiMTag1tjGIihw,10
|
|
4
|
+
numcodecs-0.13.1.dist-info/LICENSE.txt,sha256=lJysaEeeE7bJeSRjUVC04e9eaXZq2eRy6oWgjBV2u5Y,1124
|
|
5
|
+
numcodecs-0.13.1.dist-info/METADATA,sha256=6RpdX2_nPC23BntpRTEMveVtMnhchKj7Eb8HeMbDeFQ,2933
|
|
6
|
+
numcodecs/jenkins.cpython-312-darwin.so,sha256=C0fGkyvxJZaOOfyfS-WUEpLCsvDyRNynulPlzB03RpE,203712
|
|
7
|
+
numcodecs/lzma.py,sha256=8wYnJzWCi_SlQW_vhGOwChO0crYQSEbLHGNAvO-zHfs,2135
|
|
8
|
+
numcodecs/astype.py,sha256=0M9nV2Jb-8EwyoZGmOhCssaBvMej_B6hQ2p41VkmDdA,2137
|
|
9
|
+
numcodecs/gzip.py,sha256=7TyUzc9oliPqKA58VV7fNkCi_c9PP04MioAKG7a1oV0,1469
|
|
10
|
+
numcodecs/zstd.cpython-312-darwin.so,sha256=uNP9LjRvcu-ffcIJfP1aXgVILp4rWk3JqG2whQ8PRcw,731304
|
|
11
|
+
numcodecs/base64.py,sha256=i-WpnY7A-vT-71By_tVBvHi41O4DzuqYyB829eNd29E,784
|
|
12
|
+
numcodecs/bz2.py,sha256=4Ups3IMVsjvBlXyaeYONPdE14TaK9V-4LH5LSNe7AGc,1174
|
|
13
|
+
numcodecs/version.py,sha256=2tfL_x7--SF9Szc7f-1EYHtdawpHz4gvIzw8B6TKeRA,413
|
|
14
|
+
numcodecs/compat.py,sha256=jBKRckLkgVXf3M7sZwpu7l0REtYkydxkMQDaMeczCmE,6513
|
|
15
|
+
numcodecs/_shuffle.cpython-312-darwin.so,sha256=RMiYsxakJRGnaWyt5G6BtFyWCoLAVOF9dM6qEFshOYQ,182736
|
|
16
|
+
numcodecs/checksum32.py,sha256=QAum8WwnDwzt1b6E_awZwNxHjqHzQl3526MePct1A6w,3158
|
|
17
|
+
numcodecs/ndarray_like.py,sha256=hf94ErUEodzVUG3l2D8NWkhmbwDfF0dhR15drpn5S40,1866
|
|
18
|
+
numcodecs/quantize.py,sha256=WNgbVPNR6CnaF58yBbVHIQ_jg1mBe8dirkZ2ErNpQOI,3037
|
|
19
|
+
numcodecs/registry.py,sha256=IgYSlM-tIYxQ4ZZAasf33twddYqjAOZhk5zlcfIhkks,1763
|
|
20
|
+
numcodecs/blosc.cpython-312-darwin.so,sha256=lKMYJ6ZGVIIcgwGL7L_Vv2ZjsRTApgAjM7qEfx-wYi4,1042696
|
|
21
|
+
numcodecs/pickles.py,sha256=qWNRLnWZnZ9nq_QhNNI2x-s1Uoq9Eq1lsgwCSRTTxJo,1288
|
|
22
|
+
numcodecs/fixedscaleoffset.py,sha256=3J5JWZcE13lAJz9axSEpTUpAC9H-yI2RBOX8oGhtwns,4196
|
|
23
|
+
numcodecs/lz4.cpython-312-darwin.so,sha256=ZOWTj0utB5jQau0vleIowqx9immc5WwYvfRKxnZchB4,248632
|
|
24
|
+
numcodecs/__init__.py,sha256=zwD__WYuAknEKLbBPdqqa7zlpQCe86UKhcxxSdRAsWI,3101
|
|
25
|
+
numcodecs/bitround.py,sha256=l0Na1MkqNvUIA6emP0HklWT-JGsxPqjeZ2h1HtXXHv8,2824
|
|
26
|
+
numcodecs/vlen.cpython-312-darwin.so,sha256=yiOjsBlDx_-umIjsyJR_rqD25OffIEUd99JfHCow2oU,261560
|
|
27
|
+
numcodecs/zlib.py,sha256=gLPUICEQc5p6DICC_63nOsbUqxzJH_5ynuzenTQXzOQ,1049
|
|
28
|
+
numcodecs/shuffle.py,sha256=hYOFJOCEeDSNI-TqT1JrbQxbprkQD4R8VfSzD4IPI3I,1575
|
|
29
|
+
numcodecs/delta.py,sha256=RvjPnBK-6PR0K_Cb0B12pdJzQdE5JRDKhnJIU9VxMRo,2806
|
|
30
|
+
numcodecs/zfpy.py,sha256=E4a182gFNWnwKMv9jhjMpKgDl56CrcQfZ2DugYICCPs,3796
|
|
31
|
+
numcodecs/msgpacks.py,sha256=sd3uuMN1wQz9XecP8eZOQY-huqbjC6BlOzx4NsJ95kY,2611
|
|
32
|
+
numcodecs/fletcher32.cpython-312-darwin.so,sha256=6jQ-yIr2UNJN_pXpXr6tHib22NfRe6cmbAuC3W_Xejc,206336
|
|
33
|
+
numcodecs/compat_ext.cpython-312-darwin.so,sha256=A8F8ADUKHNiYl0mCFPWV3nxUwBQ_rUPP1FAGXqTfpBw,78416
|
|
34
|
+
numcodecs/packbits.py,sha256=Vm5Nvah68zShRRBuAQBrKtq8gLpYw3mP8O2qe0ndIUU,2031
|
|
35
|
+
numcodecs/categorize.py,sha256=yUzeAuPTNbMiI2vhkPRcxpEi0yQnr1orFs_I_BVoEoo,2983
|
|
36
|
+
numcodecs/json.py,sha256=Xu4dN-FydFaV-5jOewJxVBsV6rUfGUWIp4IncrjIR-E,3355
|
|
37
|
+
numcodecs/abc.py,sha256=Bi34cxGfgi3E7MxE3ZghWag5EB3swZuqi5_pkCIjCgo,4462
|
|
38
|
+
numcodecs/pcodec.py,sha256=7fOqhKUWURCbfbQFoEy8772UGna59F6v_6k_4QJrzZg,3079
|
|
39
|
+
numcodecs/tests/test_categorize.py,sha256=ftL-LSVq63R-kGuQxUb96uL1e563mlF9CWAf3yQB-Bk,2756
|
|
40
|
+
numcodecs/tests/test_registry.py,sha256=LJR5PzHdza5pzYOPu2h_5_iKuah0-Y9NBeX2wRLXQvk,1063
|
|
41
|
+
numcodecs/tests/test_vlen_utf8.py,sha256=H92YtqNY0kpO2Icu1Ey2iItK38ZhKMnJi_2FBwcKSvU,2474
|
|
42
|
+
numcodecs/tests/test_bitround.py,sha256=enJTj9BLkH0f0NH6QdMuPDTTJxEpR3GyKO-erC5_G7g,2358
|
|
43
|
+
numcodecs/tests/test_gzip.py,sha256=I685q0_vu3b_JibUz3nhW1mQtlLSQzGdgGD2twbGPXc,2925
|
|
44
|
+
numcodecs/tests/test_delta.py,sha256=njQay9mt8Evu8tB9eB3iUgtl0x_UfQx3ol3iwhWz8zk,1570
|
|
45
|
+
numcodecs/tests/test_lzma.py,sha256=WjZNlHEWdT2Ess5_L2AAt8fdpZa8UIKVNqrh4m9hlWU,2635
|
|
46
|
+
numcodecs/tests/test_bz2.py,sha256=pefO_YlOLr-RIswHas8DAQ4j81jhqLT5XGEuQ2i8DtI,1889
|
|
47
|
+
numcodecs/tests/__init__.py,sha256=Q6sNFjGUjcEU3MvCUd-PDtmYcS79Yvys3wbWWXvU5qY,72
|
|
48
|
+
numcodecs/tests/test_pickles.py,sha256=p7LfH5qJp1mmJC0nRWJbyPVCvt46raS_A6pjOZYOXqY,1679
|
|
49
|
+
numcodecs/tests/test_quantize.py,sha256=KvOyoj-u4S_-z8pT4syR6yE4i1ftFGkRfCTmgafumGw,2151
|
|
50
|
+
numcodecs/tests/test_entrypoints_backport.py,sha256=kD_s7ggoU-zf5ywsXhtf-v7y-eV4T7BRhcHS1frkO1s,1041
|
|
51
|
+
numcodecs/tests/test_pcodec.py,sha256=f7P82MoilQmWxmuspBNiA_7rjNtJ_WsVGpNSWpypIvA,2028
|
|
52
|
+
numcodecs/tests/test_lz4.py,sha256=63bjnBmT-bHCduj9w_LRTkJKBvo8emBzwVpzoDC5-A0,2353
|
|
53
|
+
numcodecs/tests/test_msgpacks.py,sha256=qcWCSXA1DhKxa9_ruOCWCaXw8PZnz8cvnpDieATfZZ4,3834
|
|
54
|
+
numcodecs/tests/test_astype.py,sha256=Wu1HtHZA6K_rW-JCxSWmU4Wwp9U83JUbUZ2ro9xDk9s,2367
|
|
55
|
+
numcodecs/tests/test_jenkins.py,sha256=DoOXdTLD25aXA0nwiO1zk_vG4N2UI6Wc3C72yqIByNc,4446
|
|
56
|
+
numcodecs/tests/test_fletcher32.py,sha256=hNf2zSAi16k4222qI2k-n5X4GgswVBfOqvKHSgSoRxQ,1456
|
|
57
|
+
numcodecs/tests/test_packbits.py,sha256=8B2sQnM-DiAEtehCEm5xm7fQ1xWm0rMk_z7Uk8OXvGI,989
|
|
58
|
+
numcodecs/tests/common.py,sha256=cLiS3SwUORLL0N8Yx4TjqgrB7Y9nwxx_5-T2qL0vqD0,12168
|
|
59
|
+
numcodecs/tests/test_base64.py,sha256=QseE5-aDwz7yv5-0dAG_6vTjeN3OpFvgcg8IhklRA4Y,2315
|
|
60
|
+
numcodecs/tests/test_shuffle.py,sha256=2aDDN9X61oaTINBW-BgY_Pp8Uc60QnJnAwsOl4XYzxg,4697
|
|
61
|
+
numcodecs/tests/test_fixedscaleoffset.py,sha256=ShOETVOAxABLp_c8g8KeJZmtv3EGbXBxfiPAgklJqaQ,2247
|
|
62
|
+
numcodecs/tests/test_compat.py,sha256=xmpCvkB0pWnHIvhoXpQH37b6EIchza1AHd49lpb4tXk,3617
|
|
63
|
+
numcodecs/tests/test_zlib.py,sha256=TFa-I15xHd4h2nNC2goChWdlB_xZLbK_vAL7s4upPWI,2539
|
|
64
|
+
numcodecs/tests/test_json.py,sha256=gT0D55oLGCtj_y-BECTwV13NOc2AXSyGsgAwBntvTfo,2288
|
|
65
|
+
numcodecs/tests/test_ndarray_like.py,sha256=Bh8wDqkbSL-yr_MDQqE5XUoWzZav5J_VzC8Lfv3BBlA,1273
|
|
66
|
+
numcodecs/tests/test_vlen_array.py,sha256=QaWVuflGxQUFToVcWVIzZHG_b8Vm4JJG6mBZVGNasK0,2477
|
|
67
|
+
numcodecs/tests/test_zstd.py,sha256=79R6VMhni-6kg9LmlmBzGe22HXhg0RvSVjw4jVNPMJQ,2610
|
|
68
|
+
numcodecs/tests/test_vlen_bytes.py,sha256=BpASj3-ap_ZjyK_nYP7YQSZg4gsECCh5DW_4pdNlhRs,2473
|
|
69
|
+
numcodecs/tests/test_entrypoints.py,sha256=7Tp92Sq9SvA9GuV32ePN7K2L9umqzT4yj3WlxTb8pQE,506
|
|
70
|
+
numcodecs/tests/test_checksum32.py,sha256=oqNXaOHEqk15u6CybHpO4fDELcoH6fwI04Sd9rAeOGY,1471
|
|
71
|
+
numcodecs/tests/test_zfpy.py,sha256=Oxo-D-ejDlQBZGIdI3mpfhnI8xhbjGfWVdbwTOATCSQ,2674
|
|
72
|
+
numcodecs/tests/test_blosc.py,sha256=wVHLJy4YL6dcsTnKYjWse-u6q_tTjPlEitreDjUNRfI,8866
|
|
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,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
|
|
File without changes
|
|
File without changes
|