Accepting request 1301515 from devel:languages:python:numeric

- 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/request/show/1301515
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numexpr?expand=0&rev=28
This commit is contained in:
2025-08-27 19:35:14 +00:00
committed by Git OBS Bridge
4 changed files with 17 additions and 9 deletions

View File

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

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

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

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Aug 27 04:10:48 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- 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.
-------------------------------------------------------------------
Wed Dec 4 10:38:19 UTC 2024 - Ben Greiner <code@bnavigator.de>

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