Skip to content

Commit 16f8ff3

Browse files
Add Django 5.2 to tox matrix (#2064)
* Add Django 5.2 to tox matrix * Update changelog
1 parent 5f36663 commit 16f8ff3

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

docs/changes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Change log
44
Pending
55
-------
66

7+
* Added Django 5.2 to the tox matrix.
8+
79
5.0.1 (2025-01-13)
810
------------------
911
* Fixing the build and release process. No functional changes.

tox.ini

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ envlist =
44
docs
55
packaging
66
py{39,310,311,312}-dj{42}-{sqlite,postgresql,postgis,mysql}
7-
py{310,311,312}-dj{42,50,51,main}-{sqlite,postgresql,psycopg3,postgis,mysql}
8-
py{313}-dj{51,main}-{sqlite,psycopg3,postgis3,mysql}
7+
py{310,311,312}-dj{42,50,51,52}-{sqlite,postgresql,psycopg3,postgis,mysql}
8+
py{313}-dj{51,52,main}-{sqlite,psycopg3,postgis3,mysql}
99

1010
[testenv]
1111
deps =
1212
dj42: django~=4.2.1
1313
dj50: django~=5.0.2
1414
dj51: django~=5.1.0
15+
dj52: django~=5.2.0a1
1516
djmain: https://github.com/django/django/archive/main.tar.gz
1617
postgresql: psycopg2-binary
1718
psycopg3: psycopg[binary]
@@ -51,28 +52,28 @@ pip_pre = True
5152
commands = python -b -W always -m coverage run -m django test -v2 {posargs:tests}
5253

5354

54-
[testenv:py{39,310,311,312,313}-dj{42,50,51,main}-{postgresql,psycopg3}]
55+
[testenv:py{39,310,311,312,313}-dj{42,50,51,52,main}-{postgresql,psycopg3}]
5556
setenv =
5657
{[testenv]setenv}
5758
DB_BACKEND = postgresql
5859
DB_PORT = {env:DB_PORT:5432}
5960

6061

61-
[testenv:py{39,310,311,312,313}-dj{42,50,51,main}-{postgis,postgis3}]
62+
[testenv:py{39,310,311,312,313}-dj{42,50,51,52,main}-{postgis,postgis3}]
6263
setenv =
6364
{[testenv]setenv}
6465
DB_BACKEND = postgis
6566
DB_PORT = {env:DB_PORT:5432}
6667

6768

68-
[testenv:py{39,310,311,312,313}-dj{42,50,51,main}-mysql]
69+
[testenv:py{39,310,311,312,313}-dj{42,50,51,52,main}-mysql]
6970
setenv =
7071
{[testenv]setenv}
7172
DB_BACKEND = mysql
7273
DB_PORT = {env:DB_PORT:3306}
7374

7475

75-
[testenv:py{39,310,311,312,313}-dj{42,50,51,main}-sqlite]
76+
[testenv:py{39,310,311,312,313}-dj{42,50,51,52,main}-sqlite]
7677
setenv =
7778
{[testenv]setenv}
7879
DB_BACKEND = sqlite3

0 commit comments

Comments
 (0)