This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pyproject.toml to declare oldest-supported-numpy build time dep
- Loading branch information
1 parent
54eb2d3
commit e0d901b
Showing
3 changed files
with
8 additions
and
1 deletion.
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,6 @@ | ||
include README.rst | ||
include LICENSE | ||
recursive-include LICENSES * | ||
include pyproject.toml | ||
include glmnet/*.pyf | ||
exclude glmnet/*.c |
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,5 @@ | ||
# Pin exact dependency version numbers for local dev and CircleCI. | ||
numpy==1.19.0 | ||
numpy==1.19.2 | ||
pytest==5.4.3 | ||
scikit-learn==0.23.1 | ||
scipy==1.5.0 |
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,6 @@ | ||
[project] | ||
requires-python = ">=3.6" | ||
|
||
[build-system] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["numpy==1.19.0", "setuptools", "wheel"] |