Skip to content

Commit 63e4745

Browse files
committed
Add Support for Django 5.2
1 parent 6ce69d0 commit 63e4745

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
32-
django-version: ["3.2", "4.2", "5.0", "5.1"]
32+
django-version: ["3.2", "4.2", "5.0", "5.1", "5.2"]
3333
experimental: [false]
3434
include:
3535
- python-version: "3.12"
@@ -49,6 +49,11 @@ jobs:
4949
django-version: 5.1
5050
- python-version: 3.9
5151
django-version: 5.1
52+
# Unsupported Python versions for Django 5.2
53+
- python-version: 3.8
54+
django-version: 5.2
55+
- python-version: 3.9
56+
django-version: 5.2
5257

5358
steps:
5459
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changelog
55

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

8+
- Add support for Django 5.2
9+
810
-------
911

1012
## v3.5.0 - 2024/09/02

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{38,39,310,311,312,py3}-dj{32,42}
4-
py{310,311,312,py3}-dj{50,51}
4+
py{310,311,312}-dj{50,51,52}
55
py312-packaging
66

77
[gh-actions]
@@ -19,6 +19,7 @@ DJANGO =
1919
4.2: dj42
2020
5.0: dj50
2121
5.1: dj51
22+
5.2: dj52
2223
main: djmain
2324
packaging: packaging
2425

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

0 commit comments

Comments
 (0)