numcodecs-wasm-round 0.2.2__py3-none-any.whl → 0.3.1__py3-none-any.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.
- numcodecs_wasm_round/__init__.pyi +4 -2
- numcodecs_wasm_round/codec.wasm +0 -0
- {numcodecs_wasm_round-0.2.2.dist-info → numcodecs_wasm_round-0.3.1.dist-info}/METADATA +10 -4
- numcodecs_wasm_round-0.3.1.dist-info/RECORD +9 -0
- {numcodecs_wasm_round-0.2.2.dist-info → numcodecs_wasm_round-0.3.1.dist-info}/WHEEL +1 -1
- numcodecs_wasm_round-0.3.1.dist-info/entry_points.txt +2 -0
- numcodecs_wasm_round-0.2.2.dist-info/RECORD +0 -8
- {numcodecs_wasm_round-0.2.2.dist-info → numcodecs_wasm_round-0.3.1.dist-info}/top_level.txt +0 -0
@@ -13,11 +13,13 @@ class Round(numcodecs.abc.Codec):
|
|
13
13
|
----------
|
14
14
|
precision : ...
|
15
15
|
Precision of the rounding operation
|
16
|
+
_version : ..., optional, default = "1.0.0"
|
17
|
+
The codec's encoding format version. Do not provide this parameter explicitly.
|
16
18
|
"""
|
17
19
|
|
18
|
-
def __init__(self, precision): ...
|
20
|
+
def __init__(self, precision, _version='1.0.0'): ...
|
19
21
|
|
20
|
-
codec_id = 'round'
|
22
|
+
codec_id = 'round.rs'
|
21
23
|
|
22
24
|
def decode(self, buf, out=None):
|
23
25
|
r"""
|
numcodecs_wasm_round/codec.wasm
CHANGED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: numcodecs_wasm_round
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.1
|
4
4
|
Summary: numcodecs-round compression codec compiled to WebAssembly
|
5
5
|
Author-email: Juniper Tyree <juniper.tyree@helsinki.fi>
|
6
6
|
Maintainer-email: Juniper Tyree <juniper.tyree@helsinki.fi>
|
@@ -382,13 +382,19 @@ License: Copyright (c) 2024-2025, Juniper Tyree
|
|
382
382
|
|
383
383
|
Requires-Python: >=3.10
|
384
384
|
Description-Content-Type: text/markdown
|
385
|
-
Requires-Dist: numcodecs-wasm~=0.1.
|
385
|
+
Requires-Dist: numcodecs-wasm~=0.1.5
|
386
386
|
|
387
|
-
[![CI Status]][workflow]
|
387
|
+
[![CI Status]][workflow] [![PyPi Release]][pypi] [![Read the Docs]][rtdocs]
|
388
388
|
|
389
389
|
[CI Status]: https://img.shields.io/github/actions/workflow/status/juntyr/numcodecs-rs/ci.yml?branch=main
|
390
390
|
[workflow]: https://github.com/juntyr/numcodecs-rs/actions/workflows/ci.yml?query=branch%3Amain
|
391
391
|
|
392
|
+
[PyPi Release]: https://img.shields.io/pypi/v/numcodecs-wasm-round.svg
|
393
|
+
[pypi]: https://pypi.python.org/pypi/numcodecs-wasm-round
|
394
|
+
|
395
|
+
[Read the Docs]: https://img.shields.io/readthedocs/numcodecs-wasm?label=readthedocs
|
396
|
+
[rtdocs]: https://numcodecs-wasm.readthedocs.io/en/stable/api/numcodecs_wasm_round/
|
397
|
+
|
392
398
|
# numcodecs-wasm-round
|
393
399
|
|
394
400
|
[`numcodecs`] compression for the [`numcodecs-round`] codec compiled to WebAssembly.
|
@@ -0,0 +1,9 @@
|
|
1
|
+
numcodecs_wasm_round/__init__.py,sha256=vapZKweuEchYcBzSgYDTfhYNdcysbPe2daZW_kdzdh8,266
|
2
|
+
numcodecs_wasm_round/__init__.pyi,sha256=DlllJd0y33ZiWlLjB2whj-0GD8JlDpmG7uPeDPP5uCg,2353
|
3
|
+
numcodecs_wasm_round/codec.wasm,sha256=5BVYggPh-XDVL-_SmXUVzIwK_gb9Pt6o0Hnr7sSlV7o,381118
|
4
|
+
numcodecs_wasm_round/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
numcodecs_wasm_round-0.3.1.dist-info/METADATA,sha256=h6QjUl3eTvB-8EKQBsNQjq5Vhm2GVN0_z0F1xNlO8f0,21432
|
6
|
+
numcodecs_wasm_round-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
+
numcodecs_wasm_round-0.3.1.dist-info/entry_points.txt,sha256=hrFlJBz0U81IU3cLMCa1LSrY__2C7qRN4cuI3-NUEg4,57
|
8
|
+
numcodecs_wasm_round-0.3.1.dist-info/top_level.txt,sha256=kMhjVd2bZo8-ZJnrDpbCLeFBgQSxbiqsow_cOTW5JYk,21
|
9
|
+
numcodecs_wasm_round-0.3.1.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
numcodecs_wasm_round/__init__.py,sha256=vapZKweuEchYcBzSgYDTfhYNdcysbPe2daZW_kdzdh8,266
|
2
|
-
numcodecs_wasm_round/__init__.pyi,sha256=aTVDZHP0dXz_11BLv-eMTIlcVXyDqyXnM2M0J3gXLuk,2197
|
3
|
-
numcodecs_wasm_round/codec.wasm,sha256=c3ddjKn3c4AtwskuAEzUqaOwIXwXe80sGCXPWeundtQ,356846
|
4
|
-
numcodecs_wasm_round/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
numcodecs_wasm_round-0.2.2.dist-info/METADATA,sha256=Wi_8YH1Y5ZHvDqtO8jtEsF1ECwtdcIToN3I6OEKZHGo,21081
|
6
|
-
numcodecs_wasm_round-0.2.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
7
|
-
numcodecs_wasm_round-0.2.2.dist-info/top_level.txt,sha256=kMhjVd2bZo8-ZJnrDpbCLeFBgQSxbiqsow_cOTW5JYk,21
|
8
|
-
numcodecs_wasm_round-0.2.2.dist-info/RECORD,,
|
File without changes
|