-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not install setuptools/wheel on python 3.13+
We should probably remove this on other python versions but since it's been there for quite some time, keep them to prevent regressions downstream.
- Loading branch information
Showing
2 changed files
with
2 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pip>=24.1b1 ; python_version >= '3.13' | ||
pip ; python_version < '3.13' | ||
setuptools | ||
wheel | ||
setuptools ; python_version < '3.13' | ||
wheel ; python_version < '3.13' | ||
build | ||
packaging |