Skip to content

Commit cc93f31

Browse files
committed
Exclude bad version of numcodecs
Actually exclude bad version of numcodecs Fix changelog entry
1 parent ed94877 commit cc93f31

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ Maintenance
3636
``zarr-python`` if you can install it, but to reduce our maintenance
3737
burden we will no longer run our compatibility tests for it.
3838
By :user:`David Stansby <dstansby>` (:issue:`2344`).
39+
* Excluded version 0.14.0 of numcodecs, due to a bug in the implementation of
40+
the Delta filter (see https://github.com/zarr-developers/numcodecs/issues/653 for more information).
41+
By :user:`David Stansby <dstansby>` (:issue:`2544`).
3942

4043
Deprecations
4144
~~~~~~~~~~~~

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies = [
1313
'asciitree',
1414
'numpy>=1.24',
1515
'fasteners; sys_platform != "emscripten"',
16-
'numcodecs>=0.10.0',
16+
'numcodecs>=0.10.0,!=0.14.0',
1717
]
1818
dynamic = ["version"]
1919
classifiers = [
@@ -42,7 +42,7 @@ docs = [
4242
'sphinx-copybutton',
4343
'pydata-sphinx-theme',
4444
'numpydoc',
45-
'numcodecs[msgpack]',
45+
'numcodecs[msgpack]!=0.14.0',
4646
]
4747

4848
[project.urls]

0 commit comments

Comments
 (0)