Skip to content

Commit

Permalink
Pypy 3.9 wheels: Allow newer numpy to avoid build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Aug 10, 2023
1 parent b69f660 commit 0efa89f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=42.0.0", "wheel>=0.34.2", "oldest-supported-numpy", "pybind11>=2.5.0"] # PEP 508 specifications.
requires = [
"setuptools>=42.0.0",
"wheel>=0.34.2",
"numpy;python_version >= '3.9' and platform_python_implementation == 'PyPy'",
"oldest-supported-numpy;python_version < '3.9' or platform_python_implementation != 'PyPy'",
"pybind11>=2.5.0"
]
build-backend = "setuptools.build_meta"


Expand Down

0 comments on commit 0efa89f

Please sign in to comment.