Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix: constrain to the latest version instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ilee2u committed Jun 13, 2024
1 parent 4a6113a commit f876898
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ edx-drf-extensions==10.3.0
# via -r requirements/base.in
edx-opaque-keys==2.10.0
# via edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via -r requirements/base.in
idna==3.7
# via requests
Expand Down Expand Up @@ -200,7 +200,7 @@ pyyaml==6.0.1
# edx-django-release-util
redis==5.0.6
# via -r requirements/base.in
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# analytics-python
Expand Down
7 changes: 4 additions & 3 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ wrapt < 1.14.0
# At the time of adding this, the moto version 4.1.9 requires urllib3<1.27,>=1.25.4
urllib3<1.27,>=1.25.4

# Constrain requests upgrade, as higher versions were being downloaded for Sphinx in docs.in, which caused a version conflict
# i.e. v2.31.0 and v2.32.3 were being downloaded at the same time, causing this to break
requests<=2.31.0
# Constrain requests upgrade to be the latest version of later.
# For some reason v2.31.0 and v2.32.3 (which is the latest version as of this writing) were installed at the same time
# This caused a version error. This constraint may be removed later if this causes issues or is no longer needed.
requests>=2.32.3
4 changes: 2 additions & 2 deletions requirements/devstack.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ edx-opaque-keys==2.10.0
# via
# -r requirements/local.txt
# edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via -r requirements/local.txt
exceptiongroup==1.2.1
# via
Expand Down Expand Up @@ -514,7 +514,7 @@ pyyaml==6.0.1
# yamllint
redis==5.0.6
# via -r requirements/local.txt
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# -r requirements/local.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pygments==2.18.0
# sphinx
pytz==2024.1
# via babel
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# sphinx
Expand Down
4 changes: 2 additions & 2 deletions requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ edx-opaque-keys==2.10.0
# via
# -r requirements/test.txt
# edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via -r requirements/test.txt
exceptiongroup==1.2.1
# via
Expand Down Expand Up @@ -504,7 +504,7 @@ pyyaml==6.0.1
# yamllint
redis==5.0.6
# via -r requirements/test.txt
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# -r requirements/docs.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/monitoring/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ edx-opaque-keys==2.10.0
# -r requirements/monitoring/../production.txt
# -r requirements/monitoring/../test.txt
# edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via
# -r requirements/monitoring/../devstack.txt
# -r requirements/monitoring/../local.txt
Expand Down Expand Up @@ -817,7 +817,7 @@ redis==5.0.6
# -r requirements/monitoring/../local.txt
# -r requirements/monitoring/../production.txt
# -r requirements/monitoring/../test.txt
requests==2.31.0
requests==2.32.3
# via
# -r requirements/monitoring/../devstack.txt
# -r requirements/monitoring/../local.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ edx-opaque-keys==2.10.0
# via
# -r requirements/base.txt
# edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via -r requirements/base.txt
gevent==24.2.1
# via -r requirements/production.in
Expand Down Expand Up @@ -292,7 +292,7 @@ pyyaml==6.0.1
# edx-django-release-util
redis==5.0.6
# via -r requirements/base.txt
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ edx-opaque-keys==2.10.0
# via
# -r requirements/base.txt
# edx-drf-extensions
edx-rest-api-client==5.7.0
edx-rest-api-client==5.6.1
# via -r requirements/base.txt
exceptiongroup==1.2.1
# via pytest
Expand Down Expand Up @@ -390,7 +390,7 @@ pyyaml==6.0.1
# yamllint
redis==5.0.6
# via -r requirements/base.txt
requests==2.31.0
requests==2.32.3
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
Expand Down

0 comments on commit f876898

Please sign in to comment.