Benjamin Greiner
5009c94269
* Better support for CPUs that do not have a power of 2 number of cores. See #479 and #490. Thanks to @avalentino. * Allow numexpr to run with the multithreading package in Python. See PR #496. Thanks to @emmaai * Wheels for Python 3.13 are now provided. - Drop fix-test-max-threads-unset.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=43
81 lines
2.6 KiB
RPMSpec
81 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-numexpr
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-numexpr
|
|
Version: 2.10.2
|
|
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 pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-numpy >= 1.23
|
|
%python_subpackages
|
|
|
|
%description
|
|
Numexpr is a numerical expression evaluator for NumPy. It is a C++
|
|
module. With it, expressions that operate on arrays (like "3*a+4*b")
|
|
can be accelerated and use less memory than doing the same
|
|
calculation in Python.
|
|
|
|
%prep
|
|
%autosetup -p1 -n numexpr-%{version}
|
|
# wrong-file-end-of-line-encoding
|
|
sed -i 's/\r$//' ANNOUNCE.rst AUTHORS.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
|
# remove unwanted shebang
|
|
sed -i '/^#!/ d' numexpr/cpuinfo.py
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
# Remove devel files
|
|
%{python_expand #
|
|
find %{buildroot}%{$python_sitearch} -name *.hpp -type f -delete
|
|
find %{buildroot}%{$python_sitearch} -name *.cpp -type f -delete
|
|
}
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
mkdir tester
|
|
pushd tester
|
|
|
|
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch}
|
|
$python -B -c "import sys;import numexpr;sys.exit(0 if numexpr.test().wasSuccessful() else 1)"
|
|
}
|
|
popd
|
|
|
|
%files %{python_files}
|
|
%doc ANNOUNCE.rst AUTHORS.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
|
%license LICENSE.txt
|
|
%{python_sitearch}/numexpr
|
|
%{python_sitearch}/numexpr-%{version}.dist-info
|
|
|
|
%changelog
|