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 2c584fcf60
commit 188b57a206
4 changed files with 36 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd779aa44dd986c4ef10163519239602b027be06a527946656207acf1f58113b
size 94824

3
numexpr-2.8.3.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb647c9d9c785dae0759bf6c875cde2bec472b5c3f7a6015734b161ae766d141
size 98436

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>

View File

@@ -17,16 +17,15 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global skip_python2 1
%global skip_python36 1
Name: python-numexpr
Version: 2.8.1
Version: 2.8.3
Release: 0
Summary: Numerical expression evaluator for NumPy
License: MIT
Group: Development/Languages/Python
URL: https://github.com/pydata/numexpr/
Source: https://files.pythonhosted.org/packages/source/n/numexpr/numexpr-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module numpy-devel >= 1.6}
BuildRequires: %{python_module setuptools}