We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ec320 commit 0236ca3Copy full SHA for 0236ca3
docs/release.rst
@@ -48,6 +48,8 @@ Fixes
48
and a warning if the version was incompatible with `zfpy`.
49
This check has been removed because `zfpy` now supports the newer versions of `NumPy`.
50
By :user:`Meher Gajula <me-her>`, :issue:`672`
51
+* Remove redundant ``id`` from codec metadata serialization in Zarr3 codecs.
52
+ By :user:`Norman Rzepka <normanrz>`, :issue:`685`
53
54
Improvements
55
~~~~~~~~~~~~
numcodecs/json.py
@@ -68,7 +68,7 @@ def __init__(
68
def encode(self, buf):
69
try:
70
buf = np.asarray(buf)
71
- except ValueError:
+ except ValueError: # pragma: no cover
72
buf = np.asarray(buf, dtype=object)
73
items = np.atleast_1d(buf).tolist()
74
items.append(buf.dtype.str)
0 commit comments