Skip to content

Commit ec5e908

Browse files
committed
Getting ready for release of 2.8.4
1 parent 67ea645 commit ec5e908

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

ANNOUNCE.rst

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Announcing NumExpr 2.8.4
44

55
Hi everyone,
66

7-
**Under development.**
7+
This is a maintenance and bug-fix release for NumExpr. In particular, now we have
8+
added Python 3.11 support.
89

910
Project documentation is available at:
1011

@@ -14,7 +15,15 @@ http://numexpr.readthedocs.io/
1415
Changes from 2.8.3 to 2.8.4
1516
---------------------------
1617

17-
* **Under development.**
18+
* Support for Python 3.11 has been added.
19+
* Thanks to Tobias Hangleiter for an improved accuracy complex `expm1` function.
20+
While it is 25 % slower, it is significantly more accurate for the real component
21+
over a range of values and matches NumPy outputs much more closely.
22+
* Thanks to Kirill Kouzoubov for a range of fixes to constants parsing that was
23+
resulting in duplicated constants of the same value.
24+
* Thanks to Mark Harfouche for noticing that we no longer need `numpy` version
25+
checks. `packaging` is no longer a requirement as a result.
26+
1827

1928
What's Numexpr?
2029
---------------

RELEASE_NOTES.rst

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Release notes for NumExpr 2.8 series
55
Changes from 2.8.3 to 2.8.4
66
---------------------------
77

8+
* Support for Python 3.11 has been added.
9+
* Thanks to Tobias Hangleiter for an improved accuracy complex `expm1` function.
10+
While it is 25 % slower, it is significantly more accurate for the real component
11+
over a range of values and matches NumPy outputs much more closely.
812
* Thanks to Kirill Kouzoubov for a range of fixes to constants parsing that was
913
resulting in duplicated constants of the same value.
1014
* Thanks to Mark Harfouche for noticing that we no longer need `numpy` version

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = numexpr
3-
version = 2.8.4dev1
3+
version = 2.8.4
44
description = Fast numerical expression evaluator for NumPy
55
author = David M. Cooke, Francesc Alted, and others
66
maintainer = Robert A. McLeod

0 commit comments

Comments
 (0)