- Update to 2.11.0:

* Initial support for free-threaded Python 3.13t has been added.
  * Fix imaginary evaluation in the form of 1.1e1j.
  * The test suite has been modernized to use pytest instead of unittest.
  * Python 3.10 is now the minimum supported version.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=45
This commit is contained in:
2025-08-27 04:11:40 +00:00
committed by Git OBS Bridge
parent 1b3671fe18
commit a232fae7f7
4 changed files with 17 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-numexpr
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,22 +18,21 @@
%{?sle15_python_module_pythons}
Name: python-numexpr
Version: 2.10.2
Version: 2.11.0
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 devel >= 3.7}
BuildRequires: %{python_module numpy-devel >= 1.23}
BuildRequires: %{python_module devel >= 3.10}
BuildRequires: %{python_module numpy-devel >= 2.0}
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.23
Requires: python-numpy >= 2.0
%python_subpackages
%description