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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ['3.12']
toxenv: [quality, data-django42, reporting-django42]
toxenv: [quality, data-django42, reporting-django42, data-django52, reporting-django52]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Change Log

Unreleased
Comment thread
vgulati-apphelix marked this conversation as resolved.

[10.22.15] - 2026-09-06
-----------------------
* chore: added Django 5.2 tox and CI compatibility checks

[10.22.14] - 2026-08-06
-----------------------
* fix: simplify unlinked-learner exclusion in the Learner Progress Report [ENT-12136]
Expand Down
2 changes: 1 addition & 1 deletion enterprise_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Enterprise data api application. This Django app exposes API endpoints used by enterprises.
"""

__version__ = "10.22.14"
__version__ = "10.22.15"
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {data, reporting}-django{42}
envlist = {data, reporting}-django{42,52}

[wheel]
universal = 1
Expand Down Expand Up @@ -39,6 +39,8 @@ setenv =
deps =
setuptools
django42: Django>=4.2,<4.3
django52: Django>=5.2,<5.3

data: -r{toxinidir}/requirements/test-master.txt
reporting: -r{toxinidir}/requirements/test-reporting.txt
commands =
Expand Down
Loading