Files
python-acoular/fix-setup.patch
Matej Cepl b573e85e27 Accepting request 988493 from home:bnavigator:branches:devel:languages:python:numeric
- Enhance fix-setup.patch
  * no upper pin for numpy
  * no upper pin for Python 3.10 -- Contrary to the commit message
    in https://github.com/acoular/acoular/commit/218d90c9a0a8
    all the deps are available
  * no deprecated setup_requires
  * no setuptools runtime requirement
  * gh#acoular/acoular#59
- Remove skip_python310
- Add relax-tests.patch -- array comparisons were too tight for
  our architectures / system libraries
- Exclude i586 build/test because of unknown numba/llvmlite error
  * gh#numba/numba#6012

OBS-URL: https://build.opensuse.org/request/show/988493
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-acoular?expand=0&rev=17
2022-07-12 13:44:45 +00:00

47 lines
1.1 KiB
Diff

---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: acoular-22.3/setup.py
===================================================================
--- acoular-22.3.orig/setup.py
+++ acoular-22.3/setup.py
@@ -19,24 +19,14 @@ with open(join(here, 'README.rst')) as f
install_requires = list([
'numba',
- 'numpy<1.22',
- 'setuptools',
+ 'numpy',
'scipy>=1.1.0',
'scikit-learn',
'tables>=3.4.4',
'traits>=6.0',
])
-setup_requires = list([
- 'numba',
- 'numpy<1.22',
- 'setuptools',
- 'scipy>=1.1.0',
- 'scikit-learn',
- 'tables>=3.4.4',
- 'traits>=6.0',
- ])
-
+
setup(name="acoular",
version=bf_version,
description="Library for acoustic beamforming",
@@ -60,9 +50,7 @@ setup(name="acoular",
install_requires = install_requires,
- setup_requires = setup_requires,
-
- python_requires = '>=3.7, <=3.9',
+ python_requires = '>=3.7',
#scripts=[join('examples','acoular_demo.py')],
include_package_data = True,