We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ae3798 + 60c3103 commit d5b19e2Copy full SHA for d5b19e2
pyproject.toml
@@ -3,7 +3,13 @@ requires = [
3
"wheel",
4
"setuptools >= 40.6.0",
5
"Cython >= 0.29.24",
6
- "oldest-supported-numpy",
+ # numpy requirement for wheel builds for distribution on PyPI - building
7
+ # against 2.x yields wheels that are also compatible with numpy 1.x at
8
+ # runtime.
9
+ # Note that building against numpy 1.x works fine too - users and
10
+ # redistributors can do this by installing the numpy version they like and
11
+ # disabling build isolation.
12
+ "numpy>=2.0.0rc1",
13
"setuptools_scm >= 7.0.0",
14
]
15
build-backend = "setuptools.build_meta"
0 commit comments