Skip to content

Commit c27ec1e

Browse files
authored
chore: remove urllib3 constraint (#2648)
Removing the constraint on `urllib3` no longer downgrades boto and its dependencies. I think it is safe to remove this constraint now.
1 parent 8afaca7 commit c27ec1e

File tree

8 files changed

+10
-26
lines changed

8 files changed

+10
-26
lines changed

requirements/all.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,9 +867,8 @@ uritemplate==4.1.1
867867
# coreapi
868868
# drf-yasg
869869
# google-api-python-client
870-
urllib3==1.26.20
870+
urllib3==2.2.3
871871
# via
872-
# -c requirements/constraints.txt
873872
# -r requirements/dev.txt
874873
# -r requirements/production.txt
875874
# botocore

requirements/base.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,8 @@ uritemplate==4.1.1
402402
# coreapi
403403
# drf-yasg
404404
# google-api-python-client
405-
urllib3==1.26.20
406-
# via
407-
# -c requirements/constraints.txt
408-
# requests
405+
urllib3==2.2.3
406+
# via requests
409407
walrus==0.9.4
410408
# via edx-event-bus-redis
411409
webencodings==0.5.1

requirements/constraints.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,12 @@
1111
# Common constraints for edx repos
1212
-c common_constraints.txt
1313

14-
# Pinning urllib3 to versions < 2.x as this conflicts with boto. This constraint will be re-evaluated as part of
15-
# APER-2422
16-
urllib3<2
17-
18-
19-
# Temporary to Support the python 3.11 Upgrade
20-
backports.zoneinfo;python_version<"3.9" # Newer versions have zoneinfo available in the standard library
21-
2214
# Pinning lxml to < 5.2 as edx-i18n-tools package needs to be updated.
2315
# Release notes: https://pypi.org/project/lxml/5.2.0/
2416
# Github issue: https://github.com/openedx/i18n-tools/issues/144
2517
lxml<5.2
2618

27-
# Pinning edx-django-utils to <6
19+
# Pinning edx-django-utils to <6
2820
# v6 drops support for python versions <3.12
2921
# Changelog: https://github.com/openedx/edx-django-utils/blob/master/CHANGELOG.rst#600---2024-10-09
3022
# Github issue: https://github.com/openedx/credentials/issues/2569

requirements/dev.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,9 +678,8 @@ uritemplate==4.1.1
678678
# coreapi
679679
# drf-yasg
680680
# google-api-python-client
681-
urllib3==1.26.20
681+
urllib3==2.2.3
682682
# via
683-
# -c requirements/constraints.txt
684683
# -r requirements/test.txt
685684
# requests
686685
# responses

requirements/docs.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,5 @@ sphinxcontrib-serializinghtml==2.0.0
6969
# via sphinx
7070
typing-extensions==4.12.2
7171
# via pydata-sphinx-theme
72-
urllib3==1.26.20
73-
# via
74-
# -c requirements/constraints.txt
75-
# requests
72+
urllib3==2.2.3
73+
# via requests

requirements/pip.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ wheel==0.45.1
1010
# The following packages are considered to be unsafe in a requirements file:
1111
pip==24.2
1212
# via
13-
# -c /home/runner/work/credentials/credentials/requirements/common_constraints.txt
13+
# -c requirements/common_constraints.txt
1414
# -r requirements/pip.in
1515
setuptools==75.6.0
1616
# via -r requirements/pip.in

requirements/production.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,8 @@ uritemplate==4.1.1
551551
# coreapi
552552
# drf-yasg
553553
# google-api-python-client
554-
urllib3==1.26.20
554+
urllib3==2.2.3
555555
# via
556-
# -c requirements/constraints.txt
557556
# -r requirements/base.txt
558557
# botocore
559558
# requests

requirements/test.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,9 +622,8 @@ uritemplate==4.1.1
622622
# coreapi
623623
# drf-yasg
624624
# google-api-python-client
625-
urllib3==1.26.20
625+
urllib3==2.2.3
626626
# via
627-
# -c requirements/constraints.txt
628627
# -r requirements/base.txt
629628
# requests
630629
# responses

0 commit comments

Comments
 (0)