Skip to content

Commit d41a0a6

Browse files
committed
Getting ready for release 2.2.6
1 parent 58c2e51 commit d41a0a6

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

ANNOUNCE.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
Announcing Python-Blosc2 2.2.5
1+
Announcing Python-Blosc2 2.2.6
22
==============================
33

4-
This is a maintenance release, where we have upgraded to latest C-Blosc2 2.10.0.
5-
This provides fixes for a bytedelta filter (see
6-
https://github.com/Blosc/c-blosc2/pull/532). Hence, an upgrade is recommended
7-
for everybody, most especially, if you are using bytedelta.
4+
This is a maintenance release, where we have upgraded to latest C-Blosc2 2.10.1.
5+
This provides fixes for dynamic plugins and the possibility to run them
6+
in multithreading mode (see PR #127).
87

98
For more info, you can have a look at the release notes in:
109

RELEASE_NOTES.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,19 @@
22

33
## Changes from 2.2.5 to 2.2.6
44

5-
XXX version-specific blurb XXX
5+
* Multithreading checks only apply to Python defined codecs and filters.
6+
Now it is possible to use multithreading with C codecs and filters plugins.
7+
See PR #127.
68

9+
* New support for dynamic filters registry for Python.
10+
11+
* Now params for codec and filter plugins are correctly initialized
12+
when using `register_codec` and `register_filter` functions.
13+
14+
* Some fixes for Cython 3.0.0. However,compatibility with Cython 3.0.0
15+
is not here yet, so build and install scripts are still requiring Cython<3.
16+
17+
* Updated to latest C-Blosc2 2.10.1.
718

819
## Changes from 2.2.4 to 2.2.5
920

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.6.dev0
1+
2.2.6

requirements-build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
scikit-build
22
cython<3
33
cmake
4-
numpy
4+
numpy<2
55
build

requirements-doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
scikit-build
22
cython<3
3-
numpy
3+
numpy<2
44
sphinx
55
pydata-sphinx-theme
66
numpydoc

requirements-test-wheels.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip
2-
numpy
2+
numpy<2
33
pytest
44
psutil
55
msgpack

requirements-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip
2-
numpy
2+
numpy<2
33
pytest
44
psutil
55
msgpack

0 commit comments

Comments
 (0)