Accepting request 988037 from home:apersaud:branches:devel:languages:python:numeric

update to latest version

OBS-URL: https://build.opensuse.org/request/show/988037
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=19
This commit is contained in:
2022-07-11 09:48:09 +00:00
committed by Git OBS Bridge
parent 96b7dd75b0
commit 9d751d9316
4 changed files with 36 additions and 6 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Sat Jul 9 13:38:01 UTC 2022 - Arun Persaud <arun@gmx.de>
- specfile:
* require python >= 3.7
- update to version 2.8.3:
* Support for Python 3.6 has been dropped due to the need to
substitute the flag NPY_ARRAY_WRITEBACKIFCOPY for
NPY_ARRAY_UPDATEIFCOPY. This flag change was initiated in NumPy
1.14 and finalized in 1.23. The only changes were made to cases
where an unaligned constant was passed in with a pre-allocated
output variable:
```
x = np.empty(5, dtype=np.uint8)[1:].view(np.int32) ne.evaluate('3', out=x)
```
We think the risk of issues is very low, but if you are using
NumExpr as a expression evaluation tool you may want to write a
test for this edge case.
* Thanks to Matt Einhorn (@matham) for improvements to the GitHub
Actions build process to add support for Apple Silicon and
aarch64.
* Thanks to Biswapriyo Nath (@biswa96) for a fix to allow mingw
builds on Windows.
* There have been some changes made to not import platform.machine()
on sparc but it is highly advised to upgrade to Python 3.9+ to
avoid this issue with the Python core package platform.
- changes from version 2.8.2:
* skipped due to an error in uploading to PyPi.
-------------------------------------------------------------------
Mon Feb 7 03:27:38 UTC 2022 - Arun Persaud <arun@gmx.de>