Skip to content

Commit f479d57

Browse files
committed
Getting ready for release 3.10.2
1 parent f90a463 commit f479d57

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

ANNOUNCE.rst

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
Announcing Python-Blosc2 3.10.1
2-
==============================
1+
Announcing Python-Blosc2 3.10.2
2+
===============================
33

44
This is a patch version release where we have aimed to tidy up the code and fix bugs:
55

6-
✅ Bumped to numexpr 2.14.1 to improve overflow behaviour for complex arguments for ``tanh`` and ``tanh``
7-
✅ Bug fixes for lazy expression calculation
8-
✅ Optimised computation for non-blosc2 chunked array arguments (e.g. Zarr, HDF5)
9-
✅ Various cleanups and most importantly shipping of python 3.14 wheels due to @DimitriPapadopoulos!
10-
✅ Now able to use blosc2 in AWS Lambda
6+
✅ LazyExpr.compute() now honors the ``out`` parameter for regular expressions (and not only for reductions).
117

128
You can think of Python-Blosc2 3.x as an extension of NumPy/numexpr that:
139

RELEASE_NOTES.md

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

33
## Changes from 3.10.1 to 3.10.2
44

5-
XXX version-specific blurb XXX
5+
* LazyExpr.compute() now honors the `out` parameter for regular expressions (and not only for reductions). See PR #506.
66

77
## Changes from 3.10.0 to 3.10.1
88

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"py-cpuinfo; platform_machine != 'wasm32'",
4242
"requests",
4343
]
44-
version = "3.10.2.dev0"
44+
version = "3.10.2"
4545
[project.entry-points."array_api"]
4646
blosc2 = "blosc2"
4747

src/blosc2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "3.10.2.dev0"
1+
__version__ = "3.10.2"
22
__array_api_version__ = "2024.12"

0 commit comments

Comments
 (0)