Skip to content

Commit

Permalink
pyproject.toml: pin setuptools < 72.2 only for PyPy
Browse files Browse the repository at this point in the history
pypa/distutils#283 still seems not fixed...

#216
  • Loading branch information
anthrotype committed Oct 29, 2024
1 parent 81f3b5f commit 9b607bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[build-system]
requires = [
"setuptools >= 36.4",
# pin setuptools on pypy to workaround this bug: https://github.com/pypa/distutils/issues/283
"setuptools >= 36.4, < 72.2; platform_python_implementation == 'PyPy'",
"setuptools >= 36.4; platform_python_implementation != 'PyPy'",
"wheel",
"setuptools_scm >= 2.1",
"cython >= 0.28.1",
Expand Down

0 comments on commit 9b607bd

Please sign in to comment.