Skip to content

Commit 69d2c26

Browse files
committed
Getting ready for release 2.2.9
1 parent 10028e5 commit 69d2c26

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

ANNOUNCE.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
Announcing Python-Blosc2 2.2.8
1+
Announcing Python-Blosc2 2.2.9
22
==============================
33

4-
This is a maintenance release, where we are providing binary wheels
5-
for Python 3.12 (yay!). We have also upgraded to latest C-Blosc2 2.10.4.
4+
This is a maintenance release, where we are introducing support for
5+
Python 3.8 and adding support for specifying (plugable) tuner parameters
6+
in cparams. There have been some minor fixes too.
67

78
For more info, you can have a look at the release notes in:
89

RELEASE_NOTES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## Changes from 2.2.8 to 2.2.9
44

5-
XXX version-specific blurb XXX
5+
* Support for specifying (plugable) tuner parameters in cparams. Thanks to
6+
Marta Iborra.
7+
8+
* Re-add support for Python 3.8. Although we don't provide wheels for it,
9+
support for is there.
10+
11+
* Avoid duplicate iteration over the same dict. Thanks to Dimitri Papadopoulos.
12+
13+
* Fix different issues with f-strings. Thanks to Dimitri Papadopoulos.
614

715
## Changes from 2.2.7 to 2.2.8
816

VERSION

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

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ classifiers = [
2525
"Operating System :: Microsoft :: Windows",
2626
"Operating System :: Unix",
2727
"Programming Language :: Python :: 3",
28+
"Programming Language :: Python :: 3.8",
2829
"Programming Language :: Python :: 3.9",
2930
"Programming Language :: Python :: 3.10",
3031
"Programming Language :: Python :: 3.11",
3132
"Programming Language :: Python :: 3.12",
3233
]
33-
requires-python = ">=3.9, <4"
34+
requires-python = ">=3.8, <4"
3435
dependencies = [
3536
"numpy>=1.20.3",
3637
"ndindex>=1.4",

0 commit comments

Comments
 (0)