pin setuptools<72.2 on pypy to workaround build error coming from distutils
Some checks failed
Build + Deploy / Build Source Distribution (push) Has been cancelled
Build + Deploy / auto32 on windows-latest (push) Has been cancelled
Build + Deploy / auto64 on macos-13 (push) Has been cancelled
Build + Deploy / auto64 on windows-latest (push) Has been cancelled
Build + Deploy / manylinux1 auto64 on ubuntu-latest (push) Has been cancelled
Build + Deploy / manylinux2010 auto64 on ubuntu-latest (push) Has been cancelled
Build + Deploy / manylinux2014 auto64 on ubuntu-latest (push) Has been cancelled
Build + Deploy / universal2 on macos-latest (push) Has been cancelled
Build + Deploy / py310 on aarch64 (push) Has been cancelled
Build + Deploy / py311 on aarch64 (push) Has been cancelled
Build + Deploy / py312 on aarch64 (push) Has been cancelled
Build + Deploy / py313 on aarch64 (push) Has been cancelled
Build + Deploy / py36 on aarch64 (push) Has been cancelled
Build + Deploy / py37 on aarch64 (push) Has been cancelled
Build + Deploy / py38 on aarch64 (push) Has been cancelled
Build + Deploy / py39 on aarch64 (push) Has been cancelled
Build + Deploy / Upload if tagged commit (push) Has been cancelled

https://github.com/pypa/distutils/issues/283
This commit is contained in:
Cosimo Lupo 2024-10-18 11:47:24 +01:00
parent 12ded61ab0
commit 3133c9c131
No known key found for this signature in database
GPG key ID: DF65A8A5A119C9A8

View file

@ -1,6 +1,8 @@
[build-system]
requires = [
"setuptools",
# pin setuptools on pypy to workaround this bug: https://github.com/pypa/distutils/issues/283
"setuptools<72.2.0; platform_python_implementation == 'PyPy'",
"setuptools; platform_python_implementation != 'PyPy'",
"wheel",
"setuptools_scm",
"cython",