-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* unpin numpy version * test * always recreate tox env * wrong way around * nvm * use minimum numpy version when building wheel * also add catchall * future is unpinned * fix typo
- Loading branch information
Showing
4 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
[build-system] | ||
requires = ["setuptools", | ||
"wheel", | ||
"cython>=0.29", | ||
"numpy>=1.16.0,!=1.19.0,<1.20.0"] | ||
"cython>=0.29.21", | ||
"numpy==1.16.0; python_version <= '3.7'", | ||
"numpy==1.17.3; python_version == '3.8'", | ||
"numpy==1.19.3; python_version == '3.9'", | ||
"numpy; python_version >= '3.10'", | ||
] | ||
|
||
# To ensure the best compatibility, try to match the numpy reqs | ||
# where possible to the following used by scipy and the minimum | ||
# of our normal numpy requirements in setup.py | ||
# https://github.com/scipy/oldest-supported-numpy/blob/master/setup.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[tox] | ||
recreate = true | ||
envlist = py-unittest | ||
indexserver = | ||
preinstall = https://pypi.python.org/simple | ||
|