Skip to content
Open
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
4 changes: 2 additions & 2 deletions requirements/django.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ botocore==1.31.78
# via
# boto3
# s3transfer
django==2.2.28
django==4.2.27
Copy link

Copilot AI Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The updated Django version (4.2.27) in this compiled requirements file conflicts with the source constraint in requirements/django.in which specifies Django>=2.2,<3.0. This mismatch will cause issues when requirements are regenerated using make upgrade or pip-compile.

To fix this, you need to also update requirements/django.in to allow Django 4.x:

Django>=4.2,<4.3

This change is supported by the project - Django 4.2 support was added in version 1.7.0 (see CHANGELOG.rst line 25) and the tox.ini configuration includes Django 4.2 test environments.

Copilot uses AI. Check for mistakes.
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/django.in
Expand Down Expand Up @@ -62,7 +62,7 @@ six==1.16.0
# fs
# fs-s3fs
# python-dateutil
sqlparse==0.4.4
sqlparse==0.5.4
# via django
urllib3==1.26.18
# via botocore
Expand Down