Skip to content

Commit 3133c9c

Browse files
committed
pin setuptools<72.2 on pypy to workaround build error coming from distutils
pypa/distutils#283
1 parent 12ded61 commit 3133c9c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[build-system]
22
requires = [
3-
"setuptools",
3+
# pin setuptools on pypy to workaround this bug: https://github.com/pypa/distutils/issues/283
4+
"setuptools<72.2.0; platform_python_implementation == 'PyPy'",
5+
"setuptools; platform_python_implementation != 'PyPy'",
46
"wheel",
57
"setuptools_scm",
68
"cython",

0 commit comments

Comments
 (0)