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
14 changes: 7 additions & 7 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@
#
# make upgrade
#
asgiref==3.11.1
asgiref==3.12.1
# via django
django==5.2.12
django==5.2.17
# via
# -c requirements/common_constraints.txt
# -r requirements/base.in
# djangorestframework
# drf-yasg
djangorestframework==3.16.1
djangorestframework==3.18.0
# via
# -r requirements/base.in
# drf-yasg
drf-yasg==1.21.15
# via -r requirements/base.in
inflection==0.5.1
# via drf-yasg
packaging==26.0
packaging==26.3
# via drf-yasg
pytz==2026.1.post1
pytz==2026.3.post1
# via drf-yasg
pyyaml==6.0.3
# via drf-yasg
sqlparse==0.5.5
sqlparse==0.6.0
# via django
uritemplate==4.2.0
# via drf-yasg

# The following packages are considered to be unsafe in a requirements file:
setuptools==82.0.0
setuptools==84.0.0
# via -r requirements/base.in
25 changes: 14 additions & 11 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,38 @@
#
# make upgrade
#
cachetools==7.0.3
cachetools==7.1.7
# via tox
colorama==0.4.6
# via tox
distlib==0.4.0
distlib==0.4.3
# via virtualenv
filelock==3.25.0
filelock==3.32.3
# via
# python-discovery
# tox
# virtualenv
packaging==26.0
packaging==26.3
# via
# pyproject-api
# tox
platformdirs==4.9.4
platformdirs==4.11.3
# via
# python-discovery
# tox
# virtualenv
pluggy==1.6.0
# via tox
pyproject-api==1.10.0
pyproject-api==1.11.0
# via tox
python-discovery==1.1.0
# via virtualenv
python-discovery==1.5.2
# via
# tox
# virtualenv
tomli-w==1.2.0
# via tox
tox==4.48.1
tox==4.60.0
# via -r requirements/ci.in
virtualenv==21.1.0
typing-extensions==4.16.0
# via tox
virtualenv==21.7.4
# 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