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
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: pre-commit/action@v2.0.2
- uses: pre-commit/action@v3.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
django-version: ["3.2", "4.2", "5.0", "5.1"]
django-version: ["3.2", "4.2", "5.0", "5.1", "5.2"]
experimental: [false]
include:
- python-version: "3.12"
Expand All @@ -49,6 +49,11 @@ jobs:
django-version: 5.1
- python-version: 3.9
django-version: 5.1
# Unsupported Python versions for Django 5.2
- python-version: 3.8
django-version: 5.2
- python-version: 3.9
django-version: 5.2

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changelog

*Add a sentence for each interesting change in this section.*

- Add support for Django 5.2

-------

## v3.5.0 - 2024/09/02
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{38,39,310,311,312,py3}-dj{32,42}
py{310,311,312,py3}-dj{50,51}
py{310,311,312,py3}-dj{50,51,52}
py312-packaging

[gh-actions]
Expand All @@ -19,6 +19,7 @@ DJANGO =
4.2: dj42
5.0: dj50
5.1: dj51
5.2: dj52
main: djmain
packaging: packaging

Expand All @@ -31,6 +32,7 @@ deps =
dj42: Django~=4.2.0
dj50: Django~=5.0.0
dj51: Django~=5.1.0
dj52: Django~=5.2.0
commands =
py{38,39,310,311,312}: coverage run tests/manage.py test testsuite {posargs: -v 2}
py{38,39,310,311,312}: coverage report -m
Expand Down