-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamically include numpy headers (#429)
* Dynamically include numpy headers * Add `pyproject.toml` and `build-constraints.txt` with numpy version pins for building wheels with `pip` and `wheelwright` * Update `setup.py` to add current numpy include directory * Assume `cython` and `numpy` are installed for `setup.py` * Remove included numpy headers * Use --only-binary in CI * Fix preshed pins * Use --only-binary for package install * Remove blis from pyproject.toml * Fix preshed pins in pyproject.toml * Revert "Remove blis from pyproject.toml" This reverts commit 8f52c14.
- Loading branch information
1 parent
57d44f3
commit 0293bf6
Showing
33 changed files
with
41 additions
and
10,217 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,4 +1,6 @@ | ||
build/ | ||
dist/ | ||
*.egg-info/ | ||
.env/ | ||
.~env/ | ||
.python/ | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# build version constraints for use with wheelwright + multibuild | ||
numpy==1.15.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' |
Oops, something went wrong.