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 @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ['3.12']
toxenv: [quality, docs, django42-drflatest, django52-drflatest]
toxenv: [quality, docs, django52-drflatest]

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

- name: Run coverage
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42-drflatest'
if: matrix.python-version == '3.12' && matrix.toxenv == 'django52-drflatest'
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 @@ -12,6 +12,8 @@ Change Log
Unreleased
----------

* Dropped Django 4.2 support; bumped djangorestframework, pyjwt 2.10→2.12.1, edx-opaque-keys 3.0→3.1, pymongo; loosened Django constraint to <6.0

[10.6.0] - 2025-04-04
---------------------
* Added Support for ``django 5.2``.
Expand Down
36 changes: 18 additions & 18 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
#
# make upgrade
#
asgiref==3.10.0
asgiref==3.11.1
# via django
certifi==2025.10.5
certifi==2026.2.25
# via requests
cffi==2.0.0
# via
# cryptography
# pynacl
charset-normalizer==3.4.3
charset-normalizer==3.4.6
# via requests
click==8.3.0
click==8.3.1
# via edx-django-utils
cryptography==46.0.2
cryptography==46.0.5
# via pyjwt
django==4.2.25
django==5.2.12
# via
# -c requirements/common_constraints.txt
# -r requirements/base.in
Expand All @@ -33,7 +33,7 @@ django-waffle==5.0.0
# via
# -r requirements/base.in
# edx-django-utils
djangorestframework==3.16.1
djangorestframework==3.17.1
# via
# -r requirements/base.in
# drf-jwt
Expand All @@ -43,33 +43,33 @@ drf-jwt==1.19.2
# via -r requirements/base.in
edx-django-utils==8.0.1
# via -r requirements/base.in
edx-opaque-keys==3.0.0
edx-opaque-keys==3.1.0
# via -r requirements/base.in
idna==3.10
idna==3.11
# via requests
psutil==7.1.0
psutil==7.2.2
# via edx-django-utils
pycparser==2.23
pycparser==3.0
# via cffi
pyjwt[crypto]==2.10.1
pyjwt[crypto]==2.12.1
# via
# -r requirements/base.in
# drf-jwt
pymongo==4.15.3
pymongo==4.16.0
# via edx-opaque-keys
pynacl==1.6.0
pynacl==1.6.2
# via edx-django-utils
requests==2.32.5
requests==2.33.0
# via -r requirements/base.in
semantic-version==2.10.0
# via -r requirements/base.in
sqlparse==0.5.3
sqlparse==0.5.5
# via django
stevedore==5.5.0
stevedore==5.7.0
# via
# edx-django-utils
# edx-opaque-keys
typing-extensions==4.15.0
# via edx-opaque-keys
urllib3==2.5.0
urllib3==2.6.3
# via requests
2 changes: 1 addition & 1 deletion requirements/common_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# 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
Expand Down
Loading