|
1 | 1 | ========================= |
2 | | -Announcing NumExpr 2.12.1 |
| 2 | +Announcing NumExpr 2.13.0 |
3 | 3 | ========================= |
4 | 4 |
|
5 | 5 | Hi everyone, |
6 | 6 |
|
7 | | -NumExpr 2.12.1 allows isnan/isfinite/isinf functions to be used with complex. |
8 | | -Also, OneAPI MKL has been fixed. Thanks to Luke Shaw for these contributions. |
| 7 | +NumExpr 2.13.0 introduced a bunch of new features including new |
| 8 | +bitwise operators (&, |, ^, ~), floor division (//). It also adds |
| 9 | +many new functions (like hypot, log2, maximum, minimum, nextafter...). |
| 10 | +Thanks to Luke Shaw for these contributions. |
9 | 11 |
|
10 | 12 | Project documentation is available at: |
11 | 13 |
|
12 | | -http://numexpr.readthedocs.io/ |
| 14 | +https://numexpr.readthedocs.io/ |
13 | 15 |
|
14 | | -Changes from 2.12.0 to 2.12.1 |
| 16 | +Changes from 2.12.1 to 2.13.0 |
15 | 17 | ----------------------------- |
16 | 18 |
|
17 | | -* Added complex counterparts for isnan/isfinite/isinf functions. |
18 | | - Thanks to Luke Shaw. |
| 19 | +* New functionality has been added: |
| 20 | + * Bitwise operators (and, or, not, xor): `&, |, ~, ^` |
| 21 | + * New binary arithmetic operator for floor division: `//` |
| 22 | + * New functions: `signbit`, `hypot`, `copysign`, `nextafter`, `maximum`, |
| 23 | + `minimum`, `log2`, `trunc`, `round` and `sign`. |
| 24 | + * Also enables integer outputs for integer inputs for |
| 25 | + `abs`, `fmod`, `copy`, `ones_like`, `sign` and `round`. |
19 | 26 |
|
20 | | -* Updated documentation for the new functions and instructions |
21 | | - for adding new functions to the virtual machine. Thanks to Luke Shaw. |
| 27 | + Thanks to Luke Shaw for the contributions. |
22 | 28 |
|
23 | | -* Fixed MKL support; it was broken in 2.12.0. Thanks to |
24 | | - Christoph Gohlke for reporting the issue. |
| 29 | +* New wheels for Python 3.14 and 3.14t are provided. |
25 | 30 |
|
26 | 31 | What's Numexpr? |
27 | 32 | --------------- |
|
0 commit comments