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

Commit e0d901b

Browse files
committed
Add pyproject.toml to declare oldest-supported-numpy build time dep
1 parent 54eb2d3 commit e0d901b

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include README.rst
22
include LICENSE
33
recursive-include LICENSES *
4+
include pyproject.toml
45
include glmnet/*.pyf
56
exclude glmnet/*.c

dev-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pin exact dependency version numbers for local dev and CircleCI.
2-
numpy==1.19.0
2+
numpy==1.19.2
33
pytest==5.4.3
44
scikit-learn==0.23.1
55
scipy==1.5.0

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[project]
2+
requires-python = ">=3.6"
3+
4+
[build-system]
5+
build-backend = "setuptools.build_meta"
6+
requires = ["numpy==1.19.0", "setuptools", "wheel"]

0 commit comments

Comments
 (0)