Skip to content

Commit 8afd036

Browse files
committed
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.
1 parent cb09e82 commit 8afd036

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

docker/build_scripts/requirements3.13.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,3 @@ pyproject-hooks==1.1.0 \
1414
--hash=sha256:4b37730834edbd6bd37f26ece6b44802fb1c1ee2ece0e54ddff8bfc06db86965 \
1515
--hash=sha256:7ceeefe9aec63a1064c18d939bdc3adf2d8aa1988a510afec15151578b232aa2
1616
# via build
17-
setuptools==69.5.1 \
18-
--hash=sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987 \
19-
--hash=sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32
20-
wheel==0.43.0 \
21-
--hash=sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85 \
22-
--hash=sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81

requirements.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pip>=24.1b1 ; python_version >= '3.13'
22
pip ; python_version < '3.13'
3-
setuptools
4-
wheel
3+
setuptools ; python_version < '3.13'
4+
wheel ; python_version < '3.13'
55
build
66
packaging

0 commit comments

Comments
 (0)