1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2025-01-03 01:56:18 +01:00

Use the oldest-supported-numpy meta package

This commit is contained in:
q-posev 2022-08-22 10:13:01 +02:00
parent ada19167c7
commit 0e8161ca1f
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,6 @@
requires = [ requires = [
"setuptools>=42", "setuptools>=42",
"wheel", "wheel",
"numpy>=1.17.3" "oldest-supported-numpy"
] ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"

View File

@ -71,5 +71,7 @@ setup(name = MODULE_NAME,
"Operating System :: MacOS" "Operating System :: MacOS"
], ],
python_requires = ">=3.0", python_requires = ">=3.0",
install_requires = ["numpy>=1.17.3"] # The ABI incompatibility of numpy is a pain, for now set the
# min numpy version such that we have wheels for CPython 3.5 & 3.6
install_requires = ["numpy>=1.13.3"]
) )