1
0

- update to 2.8.4:

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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=23
This commit is contained in:
2023-01-02 18:50:45 +00:00
committed by Git OBS Bridge
parent 0b9eb70209
commit 2c990f8492
4 changed files with 18 additions and 7 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Jan 2 18:44:01 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.8.4:
* Support for Python 3.11 has been added.
* Thanks to Tobias Hangleiter for an improved accuracy complex `expm1` function.
While it is 25 % slower, it is significantly more accurate for the real component
over a range of values and matches NumPy outputs much more closely.
* Thanks to Kirill Kouzoubov for a range of fixes to constants parsing that was
resulting in duplicated constants of the same value.
* Thanks to Mark Harfouche for noticing that we no longer need `numpy` version
checks. `packaging` is no longer a requirement as a result.
-------------------------------------------------------------------
Sun Jul 17 18:42:38 UTC 2022 - Ben Greiner <code@bnavigator.de>