We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc3e753 commit 1e525ddCopy full SHA for 1e525dd
pyproject.toml
@@ -3,7 +3,12 @@ requires = [
3
"wheel",
4
# pin setuptools:
5
# https://github.com/airspeed-velocity/asv/pull/1426#issuecomment-2290658198
6
- "setuptools>=64,<72.2.0"
+ # Most likely cause:
7
+ # https://github.com/pypa/distutils/issues/283
8
+ # Workaround based on this commit:
9
+ # https://github.com/harfbuzz/uharfbuzz/commit/9b607bd06fb17fcb4abe3eab5c4f342ad08309d7
10
+ "setuptools>=64,<72.2.0; platform_python_implementation == 'PyPy'",
11
+ "setuptools>=64; platform_python_implementation != 'PyPy'"
12
]
13
build-backend = "setuptools.build_meta"
14
0 commit comments