Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Add pyproject.toml to declare oldest-supported-numpy build time dep
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHayes committed Apr 23, 2021
1 parent 54eb2d3 commit e0d901b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
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
2 changes: 1 addition & 1 deletion dev-requirements.txt
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
6 changes: 6 additions & 0 deletions pyproject.toml
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"]

0 comments on commit e0d901b

Please sign in to comment.