numcodecs-wasm-round 0.2.0.dev1__tar.gz → 0.2.2__tar.gz

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.
Files changed (15) hide show
  1. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/PKG-INFO +2 -2
  2. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/pyproject.toml +2 -2
  3. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round/__init__.pyi +2 -2
  4. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round/codec.wasm +0 -0
  5. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round.egg-info/PKG-INFO +2 -2
  6. numcodecs_wasm_round-0.2.2/src/numcodecs_wasm_round.egg-info/requires.txt +1 -0
  7. numcodecs_wasm_round-0.2.0.dev1/src/numcodecs_wasm_round.egg-info/requires.txt +0 -1
  8. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/LICENSE +0 -0
  9. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/README.md +0 -0
  10. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/setup.cfg +0 -0
  11. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round/__init__.py +0 -0
  12. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round/py.typed +0 -0
  13. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round.egg-info/SOURCES.txt +0 -0
  14. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round.egg-info/dependency_links.txt +0 -0
  15. {numcodecs_wasm_round-0.2.0.dev1 → numcodecs_wasm_round-0.2.2}/src/numcodecs_wasm_round.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: numcodecs_wasm_round
3
- Version: 0.2.0.dev1
3
+ Version: 0.2.2
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,7 +382,7 @@ 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.0.dev1
385
+ Requires-Dist: numcodecs-wasm~=0.1.1
386
386
 
387
387
  [![CI Status]][workflow]
388
388
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "numcodecs_wasm_round"
7
- version = "0.2.0.dev1"
7
+ version = "0.2.2"
8
8
  description = "numcodecs-round compression codec compiled to WebAssembly"
9
9
 
10
10
  authors = [{ name = "Juniper Tyree", email = "juniper.tyree@helsinki.fi" }]
@@ -16,7 +16,7 @@ license = { file = "LICENSE" }
16
16
  requires-python = ">=3.10"
17
17
 
18
18
  dependencies = [
19
- "numcodecs-wasm==0.1.0.dev1", # wasi 0.2.2
19
+ "numcodecs-wasm~=0.1.1", # wasi 0.2.3
20
20
  ]
21
21
 
22
22
  [tool.setuptools.packages.find]
@@ -4,7 +4,7 @@ import numcodecs.abc
4
4
 
5
5
  class Round(numcodecs.abc.Codec):
6
6
  r"""
7
- Codec that [`round`][numcodecs_wasm_round.round]s the data on encoding and passes through the input
7
+ Codec that rounds the data on encoding and passes through the input
8
8
  unchanged during decoding.
9
9
 
10
10
  The codec only supports floating point data.
@@ -58,7 +58,7 @@ class Round(numcodecs.abc.Codec):
58
58
  """
59
59
  ...
60
60
 
61
- @staticmethod
61
+ @classmethod
62
62
  def from_config(cls, config):
63
63
  r"""
64
64
  Instantiate the codec from a configuration [`dict`][dict].
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: numcodecs_wasm_round
3
- Version: 0.2.0.dev1
3
+ Version: 0.2.2
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,7 +382,7 @@ 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.0.dev1
385
+ Requires-Dist: numcodecs-wasm~=0.1.1
386
386
 
387
387
  [![CI Status]][workflow]
388
388
 
@@ -0,0 +1 @@
1
+ numcodecs-wasm~=0.1.1
@@ -1 +0,0 @@
1
- numcodecs-wasm==0.1.0.dev1