pyproject.toml: loosen dependencies to avoid building from source

This commit is contained in:
Aarni Koskela 2023-09-26 20:41:26 +03:00
parent 0b95b88f13
commit 8bb2d652ca
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
[build-system]
requires = ["setuptools", "wheel", "cython==0.29.30", "numpy==1.22.0", "packaging"]
requires = [
"setuptools",
"wheel",
"cython~=0.29.30",
"numpy>=1.22.0",
"packaging",
]
[flake8]
max-line-length=120