Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
#
# make upgrade
#
asgiref==3.11.1
asgiref==3.12.1
# via django
certifi==2026.4.22
certifi==2026.7.22
# via requests
cffi==2.0.0
cffi==2.1.1
# via pynacl
charset-normalizer==3.4.7
charset-normalizer==3.5.1
# via requests
click==8.3.3
click==8.5.0
# via edx-django-utils
django==5.2.13
django==5.2.17
# via
# -c requirements/common_constraints.txt
# django-crum
Expand All @@ -24,23 +24,23 @@ django-crum==0.7.9
# via edx-django-utils
django-waffle==5.0.0
# via edx-django-utils
edx-django-utils==8.0.1
edx-django-utils==8.0.2
# via -r requirements/base.in
idna==3.13
idna==3.19
# via requests
psutil==7.2.2
# via edx-django-utils
pycparser==3.0
# via cffi
pyjwt==2.12.1
pyjwt==2.13.0
# via -r requirements/base.in
pynacl==1.6.2
# via edx-django-utils
requests==2.33.1
requests==2.34.2
# via -r requirements/base.in
sqlparse==0.5.5
sqlparse==0.6.0
# via django
stevedore==5.7.0
stevedore==5.9.1
# via edx-django-utils
urllib3==2.6.3
urllib3==2.7.0
# via requests
13 changes: 6 additions & 7 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
#
# make upgrade
#
cachetools==7.1.1
cachetools==7.1.8
# via tox
chardet==7.4.3
chardet==7.6.0
# via tox
colorama==0.4.6
# via tox
distlib==0.4.0
distlib==0.4.3
# via virtualenv
filelock==3.29.0
filelock==3.32.5
# via
# python-discovery
# tox
Expand All @@ -25,7 +25,6 @@ packaging==24.2
platformdirs==4.3.6
# via
# -c requirements/constraints.txt
# python-discovery
# tox
# virtualenv
pluggy==1.5.0
Expand All @@ -34,9 +33,9 @@ pluggy==1.5.0
# tox
pyproject-api==1.9.0
# via tox
python-discovery==1.2.2
python-discovery==1.6.0
# via virtualenv
tox==4.27.0
# via -r requirements/ci.in
virtualenv==21.3.1
virtualenv==21.7.7
# via tox
23 changes: 23 additions & 0 deletions requirements/common_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,26 @@ Django<6.0
# elastic search changelog: https://www.elastic.co/guide/en/enterprise-search/master/release-notes-7.14.0.html
# See https://github.com/openedx/edx-platform/issues/35126 for more info
elasticsearch<7.14.0

# 2026-07-06: Constrain social-auth-* packages to the latest version compatible with
# edx-drf-extensions<=10.6.0. (Newer versions require a POST instead of a GET.)
# Tracking issue: https://github.com/openedx/edx-drf-extensions/issues/561
social-auth-app-django<6.0.0
social-auth-core<5.0.0

# 2026-08-11: pip-tools is only tested against the latest pip released at the time
# pip-tools was released; also, pip-tools package dependencies are extremely permissive
# about the pip version required, so the dependency resolver will not prevent an unwanted
# pip upgrade which would break pip-tools. The end result is that pip MUST be constrained
# by all pip-tools users in order to avoid potentially weeks-long lapses in pip <->
# pip-tools compatibility. We've constrained pip here in common_constraints.txt in the
# past, but always removed it once the issue was "fixed". Removing this constraint was
# always a mistake.
#
# This is a semi-permanent constraint and should be manually bumped after each pip-tools
# release.
#
# Exceptional conditions for removal:
# - We stop using pip-tools, OR
# - We migrate to the proposed `pip-tools[stable]` extra: https://github.com/jazzband/pip-tools/pull/2257
pip<26.2.1 # Known to work with pip-tools==7.6.1
Loading