Skip to content

Commit d5ec405

Browse files
authored
Restrict setuptools version to work around breakages (pyca#11503)
1 parent e79085a commit d5ec405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/requirements/build-requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Must be kept sync with build-system.requires at pyproject.toml
2-
setuptools>=61.0.0
2+
setuptools!=74.0.0
33
cffi>=1.12; platform_python_implementation != 'PyPy'
44
maturin>=1,<2
55

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ requires = [
88
"cffi>=1.12; platform_python_implementation != 'PyPy'",
99
# Needed because cffi imports distutils, and in Python 3.12, distutils has
1010
# been removed from the stdlib, but installing setuptools puts it back.
11-
"setuptools",
11+
"setuptools!=74.0.0",
1212
]
1313
build-backend = "maturin"
1414

0 commit comments

Comments
 (0)