Skip to content

Commit 0236ca3

Browse files
committed
release docs
1 parent 57ec320 commit 0236ca3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/release.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ Fixes
4848
and a warning if the version was incompatible with `zfpy`.
4949
This check has been removed because `zfpy` now supports the newer versions of `NumPy`.
5050
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`
5153

5254
Improvements
5355
~~~~~~~~~~~~

numcodecs/json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(
6868
def encode(self, buf):
6969
try:
7070
buf = np.asarray(buf)
71-
except ValueError:
71+
except ValueError: # pragma: no cover
7272
buf = np.asarray(buf, dtype=object)
7373
items = np.atleast_1d(buf).tolist()
7474
items.append(buf.dtype.str)

0 commit comments

Comments
 (0)