Skip to content

Commit

Permalink
Restrict setuptools version to work around breakages
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Aug 28, 2024
1 parent e79085a commit 2355c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/requirements/build-requirements.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Must be kept sync with build-system.requires at pyproject.toml
setuptools>=61.0.0
setuptools!=74.0.0
cffi>=1.12; platform_python_implementation != 'PyPy'
maturin>=1,<2

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ requires = [
"cffi>=1.12; platform_python_implementation != 'PyPy'",
# Needed because cffi imports distutils, and in Python 3.12, distutils has
# been removed from the stdlib, but installing setuptools puts it back.
"setuptools",
"setuptools!=74.0.0",
]
build-backend = "maturin"

Expand Down

0 comments on commit 2355c18

Please sign in to comment.