Sync from SUSE:SLFO:Main python-numba revision fadabde06dc471ea8ec9754f1f0463a5
This commit is contained in:
commit
99fc27f089
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
5
_multibuild
Normal file
5
_multibuild
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>test-py39</package>
|
||||||
|
<package>test-py310</package>
|
||||||
|
<package>test-py311</package>
|
||||||
|
</multibuild>
|
BIN
numba-0.58.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
numba-0.58.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
1458
python-numba.changes
Normal file
1458
python-numba.changes
Normal file
File diff suppressed because it is too large
Load Diff
179
python-numba.spec
Normal file
179
python-numba.spec
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
#
|
||||||
|
# spec file
|
||||||
|
#
|
||||||
|
# Copyright (c) 2023 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define plainpython python
|
||||||
|
# upper bound is exclusive: min-numpy_ver <= numpy < max_numpy_ver
|
||||||
|
%define min_numpy_ver 1.22
|
||||||
|
%define max_numpy_ver 1.27
|
||||||
|
|
||||||
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
%if "%{flavor}" == ""
|
||||||
|
%define psuffix %{nil}
|
||||||
|
%bcond_with test
|
||||||
|
%endif
|
||||||
|
%if "%{flavor}" == "test-py39"
|
||||||
|
%define psuffix -test-py39
|
||||||
|
%define skip_python310 1
|
||||||
|
%define skip_python311 1
|
||||||
|
%bcond_without test
|
||||||
|
%endif
|
||||||
|
%if "%{flavor}" == "test-py310"
|
||||||
|
%define psuffix -test-py310
|
||||||
|
%define skip_python39 1
|
||||||
|
%define skip_python311 1
|
||||||
|
%bcond_without test
|
||||||
|
%endif
|
||||||
|
%if "%{flavor}" == "test-py311"
|
||||||
|
%define psuffix -test-py311
|
||||||
|
%define skip_python39 1
|
||||||
|
%define skip_python310 1
|
||||||
|
%bcond_without test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Name: python-numba%{?psuffix}
|
||||||
|
Version: 0.58.1
|
||||||
|
Release: 0
|
||||||
|
Summary: NumPy-aware optimizing compiler for Python using LLVM
|
||||||
|
License: BSD-2-Clause
|
||||||
|
URL: https://numba.pydata.org/
|
||||||
|
# SourceRepository: https://github.com/numba/numba
|
||||||
|
Source: https://files.pythonhosted.org/packages/source/n/numba/numba-%{version}.tar.gz
|
||||||
|
# PATCH-FIX-OPENSUSE skip tests failing due to OBS specifics
|
||||||
|
Patch3: skip-failing-tests.patch
|
||||||
|
BuildRequires: %{python_module devel >= 3.8}
|
||||||
|
BuildRequires: %{python_module numpy-devel >= %{min_numpy_ver} with %python-numpy-devel < %{max_numpy_ver}}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
BuildRequires: (tbb-devel >= 2021)
|
||||||
|
Requires: (python-llvmlite >= 0.41 with python-llvmlite < 0.42)
|
||||||
|
Requires: (python-numpy >= %{min_numpy_ver} with python-numpy < %{max_numpy_ver})
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun):update-alternatives
|
||||||
|
Recommends: python-Jinja2
|
||||||
|
Recommends: python-Pygments
|
||||||
|
Recommends: python-cffi
|
||||||
|
Recommends: python-scipy > 1.0
|
||||||
|
Recommends: python-tbb
|
||||||
|
%if %{with test}
|
||||||
|
BuildRequires: %{python_module Jinja2}
|
||||||
|
BuildRequires: %{python_module PyYAML}
|
||||||
|
BuildRequires: %{python_module Pygments}
|
||||||
|
BuildRequires: %{python_module cffi}
|
||||||
|
BuildRequires: %{python_module ipython}
|
||||||
|
BuildRequires: %{python_module numba = %{version}}
|
||||||
|
BuildRequires: %{python_module numba-devel = %{version}}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module psutil}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module scipy >= 1.0}
|
||||||
|
BuildRequires: %{python_module tbb}
|
||||||
|
%endif
|
||||||
|
# Tests fail on ppc64 big endian, not resolvable on s390x
|
||||||
|
# Supported Platforms: https://numba.pydata.org/numba-doc/dev/user/installing.html#compatibility
|
||||||
|
ExclusiveArch: x86_64 %ix86 ppc64le %arm aarch64
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
|
%description
|
||||||
|
Numba is a NumPy-aware optimizing compiler for Python. It uses the
|
||||||
|
LLVM compiler infrastructure to compile Python syntax to
|
||||||
|
machine code.
|
||||||
|
|
||||||
|
It is aware of NumPy arrays as typed memory regions and so can speed-up
|
||||||
|
code using NumPy arrays. Other, less well-typed code will be translated
|
||||||
|
to Python C-API calls, effectively removing the "interpreter", but not removing
|
||||||
|
the dynamic indirection.
|
||||||
|
|
||||||
|
Numba is also not a tracing JIT. It *compiles* your code before it gets
|
||||||
|
run, either using run-time type information or type information you provide
|
||||||
|
in the decorator.
|
||||||
|
|
||||||
|
Numba is a mechanism for producing machine code from Python syntax and typed
|
||||||
|
data structures such as those that exist in NumPy.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for numba applications
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
Requires: python-devel
|
||||||
|
Requires: python-numpy-devel >= %{min_numpy_ver}
|
||||||
|
Requires: %{plainpython}(abi) = %{python_version}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package contains files for developing applications using numba.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -n numba-%{version}
|
||||||
|
sed -i -e '1{/env python/ d}' numba/misc/appdirs.py
|
||||||
|
|
||||||
|
# random timeouts in OBS
|
||||||
|
rm numba/tests/test_typedlist.py
|
||||||
|
# if we reduced the amount of tests too much:
|
||||||
|
# sed -i -e '/check_testsuite_size/ s/5000/3000/' numba/tests/test_runtests.py
|
||||||
|
|
||||||
|
%build
|
||||||
|
%if !%{with test}
|
||||||
|
export CFLAGS="%{optflags} -fPIC"
|
||||||
|
%pyproject_wheel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
%if !%{with test}
|
||||||
|
%pyproject_install
|
||||||
|
%{python_expand #
|
||||||
|
%fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
find %{buildroot}%{$python_sitearch} -name '*.[ch]' > devel-files0-%{$python_bin_suffix}.files
|
||||||
|
sed 's|^%{buildroot}||' devel-files0-%{$python_bin_suffix}.files > devel-files-%{$python_bin_suffix}.files
|
||||||
|
sed 's|^%{buildroot}|%%exclude |' devel-files0-%{$python_bin_suffix}.files > devel-files-exclude-%{$python_bin_suffix}.files
|
||||||
|
}
|
||||||
|
%python_clone -a %{buildroot}%{_bindir}/numba
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with test}
|
||||||
|
# test the installed package, not the source without compiled modules
|
||||||
|
mkdir emptytestdir
|
||||||
|
pushd emptytestdir
|
||||||
|
%{python_expand # numbatests: check specific tests with `osc build -M test --define="numbatests <testnames>"`
|
||||||
|
%{_bindir}/numba-%%{$python_bin_suffix} -s
|
||||||
|
$python -m numba.runtests -v -b --exclude-tags='long_running' -m %{_smp_build_ncpus} -- %{?!numbatests:numba.tests}%{?numbatests}
|
||||||
|
}
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if !%{with test}
|
||||||
|
%post
|
||||||
|
%python_install_alternative numba
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%python_uninstall_alternative numba
|
||||||
|
|
||||||
|
%files %{python_files} -f devel-files-exclude-%{python_bin_suffix}.files
|
||||||
|
%license LICENSE
|
||||||
|
%doc CHANGE_LOG README.rst
|
||||||
|
%python_alternative %{_bindir}/numba
|
||||||
|
%{python_sitearch}/numba/
|
||||||
|
%{python_sitearch}/numba-%{version}.dist-info
|
||||||
|
|
||||||
|
%files %{python_files devel} -f devel-files-%{python_bin_suffix}.files
|
||||||
|
%license LICENSE
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
59
skip-failing-tests.patch
Normal file
59
skip-failing-tests.patch
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
---
|
||||||
|
numba/tests/test_parfors.py | 5 +++--
|
||||||
|
numba/tests/test_parfors_passes.py | 1 +
|
||||||
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
Index: numba-0.57.0/numba/tests/test_parfors.py
|
||||||
|
===================================================================
|
||||||
|
--- numba-0.57.0.orig/numba/tests/test_parfors.py
|
||||||
|
+++ numba-0.57.0/numba/tests/test_parfors.py
|
||||||
|
@@ -1190,6 +1190,7 @@ class TestParforNumPy(TestParforsBase):
|
||||||
|
self.check_variants(test_impl2, data_gen)
|
||||||
|
self.count_parfors_variants(test_impl2, data_gen)
|
||||||
|
|
||||||
|
+ @unittest.skip("Fails on type check in OBS")
|
||||||
|
def test_ndarray_fill(self):
|
||||||
|
def test_impl(x):
|
||||||
|
x.fill(7.0)
|
||||||
|
@@ -4479,7 +4480,7 @@ class TestParforsVectorizer(TestPrangeBa
|
||||||
|
|
||||||
|
return asm
|
||||||
|
|
||||||
|
- @linux_only
|
||||||
|
+ @unittest.skip("Our x86_64 asm is most probably different from the upstream one.")
|
||||||
|
def test_vectorizer_fastmath_asm(self):
|
||||||
|
""" This checks that if fastmath is set and the underlying hardware
|
||||||
|
is suitable, and the function supplied is amenable to fastmath based
|
||||||
|
@@ -4519,7 +4520,7 @@ class TestParforsVectorizer(TestPrangeBa
|
||||||
|
# check no zmm addressing is present
|
||||||
|
self.assertTrue('zmm' not in v)
|
||||||
|
|
||||||
|
- @linux_only
|
||||||
|
+ @unittest.skip("Our x86_64 asm is most probably different from the upstream one.")
|
||||||
|
def test_unsigned_refusal_to_vectorize(self):
|
||||||
|
""" This checks that if fastmath is set and the underlying hardware
|
||||||
|
is suitable, and the function supplied is amenable to fastmath based
|
||||||
|
Index: numba-0.57.0/numba/tests/test_parfors_passes.py
|
||||||
|
===================================================================
|
||||||
|
--- numba-0.57.0.orig/numba/tests/test_parfors_passes.py
|
||||||
|
+++ numba-0.57.0/numba/tests/test_parfors_passes.py
|
||||||
|
@@ -516,6 +516,7 @@ class TestConvertLoopPass(BaseTest):
|
||||||
|
str(raises.exception),
|
||||||
|
)
|
||||||
|
|
||||||
|
+ @unittest.skip("Fails on type check in OBS")
|
||||||
|
def test_init_prange(self):
|
||||||
|
def test_impl():
|
||||||
|
n = 20
|
||||||
|
Index: numba-0.57.0/numba/tests/test_cli.py
|
||||||
|
===================================================================
|
||||||
|
--- numba-0.57.0.orig/numba/tests/test_cli.py
|
||||||
|
+++ numba-0.57.0/numba/tests/test_cli.py
|
||||||
|
@@ -264,6 +264,7 @@ class TestGDBCLIInfoBrokenGdbs(TestCase)
|
||||||
|
self.assertIn("No such file or directory", stdout)
|
||||||
|
self.assertIn(path, stdout)
|
||||||
|
|
||||||
|
+ @unittest.skip("Fails on type check in OBS")
|
||||||
|
def test_nonsense_gdb_binary(self):
|
||||||
|
# Tests that a nonsense binary specified as gdb it picked up ok
|
||||||
|
env = os.environ.copy()
|
Loading…
Reference in New Issue
Block a user