We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c922fe commit 23bfef5Copy full SHA for 23bfef5
pyproject.toml
@@ -76,8 +76,10 @@ requires = [
76
"ninja",
77
"setuptools",
78
"cython>=3",
79
- # Newer than NEP29-minimum: compile against oldest numpy available
80
- "numpy>=1.22; python_version > '3.8'",
+ # From Numpy 1.25, Numpy is always backwards compatible for any given Python
+ # version. See:
81
+ # https://numpy.org/doc/stable/release/1.25.0-notes.html#compiling-against-the-numpy-c-api-is-now-backwards-compatible-by-default
82
+ "numpy>=1.25; python_version > '3.8'",
83
# NEP29-minimum as of Sep 21, 2023
84
"numpy==1.22; python_version >= '3.7' and python_version < '3.9'",
85
]
0 commit comments