Accepting request 1169176 from home:bnavigator:numpy

- Update to 2.10.0
  * Support for NumPy 2.0.0. This is still experimental, so please
    report any issues you find. Thanks to Clément Robert and Thomas
    Caswell for the work.
  * Avoid erroring when OMP_NUM_THREADS is empty string. Thanks to
    Patrick Hoefler.
  * Do not warn if OMP_NUM_THREAD set.

OBS-URL: https://build.opensuse.org/request/show/1169176
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=36
This commit is contained in:
2024-04-19 22:24:54 +00:00
committed by Git OBS Bridge
parent 94739bfeda
commit cc53e81786
4 changed files with 18 additions and 6 deletions

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-numexpr
Version: 2.9.0
Version: 2.10.0
Release: 0
Summary: Numerical expression evaluator for NumPy
License: MIT
@@ -26,14 +26,15 @@ 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 devel >= 3.7}
BuildRequires: %{python_module numpy-devel >= 1.13.3}
# Until numpy 2 is in Factory, keep allowing to build with numpy 1.x. See comments in pyproject.toml for scipy and pandas
BuildRequires: %{python_module numpy-devel >= 1.19.3}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
Requires: python-numpy >= 1.13.3
Requires: python-numpy >= 1.19.3
%python_subpackages
%description