Skip to content

Commit c7b1295

Browse files
Merge pull request #177 from edx/nadeem/pin_setuptools
fix: Pin setuptools and wheel versions for Python 3.8 compatibility
2 parents 9529233 + 17d503c commit c7b1295

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

requirements/pip.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Core dependencies for installing other packages
33

44
pip
5-
setuptools
6-
wheel
5+
# pinning these versions because newer versions are not available for Python 3.8.
6+
# They will be unpinned once we upgrade all our Jenkins jobs to Python 3.9 or a newer version:
7+
setuptools==75.3.0
8+
wheel==0.44.0
79

requirements/pip.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
#
55
# make upgrade
66
#
7-
wheel==0.45.1
7+
wheel==0.44.0
88
# via -r requirements/pip.in
99

1010
# The following packages are considered to be unsafe in a requirements file:
1111
pip==24.2
1212
# via
1313
# -c requirements/common_constraints.txt
1414
# -r requirements/pip.in
15-
setuptools==75.8.2
15+
setuptools==75.3.0
1616
# via -r requirements/pip.in

0 commit comments

Comments
 (0)