File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ Announcing NumExpr 2.8.4
4
4
5
5
Hi everyone,
6
6
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.
8
9
9
10
Project documentation is available at:
10
11
@@ -14,7 +15,15 @@ http://numexpr.readthedocs.io/
14
15
Changes from 2.8.3 to 2.8.4
15
16
---------------------------
16
17
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
+
18
27
19
28
What's Numexpr?
20
29
---------------
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ Release notes for NumExpr 2.8 series
5
5
Changes from 2.8.3 to 2.8.4
6
6
---------------------------
7
7
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.
8
12
* Thanks to Kirill Kouzoubov for a range of fixes to constants parsing that was
9
13
resulting in duplicated constants of the same value.
10
14
* Thanks to Mark Harfouche for noticing that we no longer need `numpy ` version
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = numexpr
3
- version = 2.8.4dev1
3
+ version = 2.8.4
4
4
description = Fast numerical expression evaluator for NumPy
5
5
author = David M. Cooke, Francesc Alted, and others
6
6
maintainer = Robert A. McLeod
You can’t perform that action at this time.
0 commit comments