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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ['3.11', '3.12']
toxenv: [quality, docs, django42, django52]
toxenv: [quality, docs, django52]

steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
run: tox

- name: Run coverage
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42'
if: matrix.python-version == '3.12' && matrix.toxenv == 'django52'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Change Log
Unreleased
~~~~~~~~~~

* Dropped Django 4.2 support; bumped celery 5.5→5.6.2, jsonfield 3.1→3.2, pip to 26.0.1; loosened Django constraint to <6.0

[1.4.0] - 2024-03-31
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added django5.2 support. Adding new migration with index_together change.
Expand Down
28 changes: 16 additions & 12 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,52 +6,56 @@
#
amqp==5.3.1
# via kombu
asgiref==3.8.1
asgiref==3.11.1
# via django
billiard==4.2.1
billiard==4.2.4
# via celery
celery==5.5.1
celery==5.6.2
# via
# -c requirements/constraints.txt
# -r requirements/base.in
click==8.1.8
click==8.3.1
# via
# celery
# click-didyoumean
# click-plugins
# click-repl
click-didyoumean==0.3.1
# via celery
click-plugins==1.1.1
click-plugins==1.1.1.2
# via celery
click-repl==0.3.0
# via celery
django==4.2.20
django==5.2.12
# via
# -c requirements/common_constraints.txt
# -r requirements/base.in
# django-model-utils
# jsonfield
django-model-utils==5.0.0
# via -r requirements/base.in
jsonfield==3.1.0
jsonfield==3.2.0
# via -r requirements/base.in
kombu==5.5.3
kombu==5.6.2
# via celery
prompt-toolkit==3.0.51
packaging==26.0
# via kombu
prompt-toolkit==3.0.52
# via click-repl
python-dateutil==2.9.0.post0
# via celery
six==1.17.0
# via python-dateutil
sqlparse==0.5.3
sqlparse==0.5.5
# via django
tzdata==2025.2
tzdata==2025.3
# via kombu
tzlocal==5.3.1
# via celery
vine==5.1.0
# via
# amqp
# celery
# kombu
wcwidth==0.2.13
wcwidth==0.6.0
# via prompt-toolkit
10 changes: 5 additions & 5 deletions requirements/celery50.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
amqp==5.3.1
billiard==4.2.1
celery==5.5.1
click==8.1.8
billiard==4.2.4
celery==5.6.2
click==8.3.1
click-didyoumean==0.3.1
click-repl==0.3.0
kombu==5.5.3
prompt-toolkit==3.0.51
kombu==5.6.2
prompt-toolkit==3.0.52
vine==5.1.0
26 changes: 15 additions & 11 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,35 @@
#
# make upgrade
#
cachetools==5.5.2
# via tox
chardet==5.2.0
cachetools==7.0.5
# via tox
colorama==0.4.6
# via tox
distlib==0.3.9
distlib==0.4.0
# via virtualenv
filelock==3.18.0
filelock==3.25.2
# via
# python-discovery
# tox
# virtualenv
packaging==25.0
packaging==26.0
# via
# pyproject-api
# tox
platformdirs==4.3.7
platformdirs==4.9.4
# via
# python-discovery
# tox
# virtualenv
pluggy==1.5.0
pluggy==1.6.0
# via tox
pyproject-api==1.10.0
# via tox
pyproject-api==1.9.0
python-discovery==1.2.0
# via virtualenv
tomli-w==1.2.0
# via tox
tox==4.25.0
tox==4.50.3
# via -r requirements/ci.in
virtualenv==20.30.0
virtualenv==21.2.0
# via tox
13 changes: 1 addition & 12 deletions requirements/common_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,9 @@
# this file from Github directly. It does not require packaging in edx-lint.

# using LTS django version
Django<5.0
Django<6.0

# elasticsearch>=7.14.0 includes breaking changes in it which caused issues in discovery upgrade process.
# 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

# django-simple-history>3.0.0 adds indexing and causes a lot of migrations to be affected
django-simple-history==3.0.0

# Cause: https://github.com/openedx/edx-lint/issues/458
# This can be unpinned once https://github.com/openedx/edx-lint/issues/459 has been resolved.
pip<24.3

# Cause: https://github.com/openedx/edx-lint/issues/475
# This can be unpinned once https://github.com/openedx/edx-lint/issues/476 has been resolved.
urllib3<2.3.0
Loading