Skip to content

Commit 5321f6d

Browse files
authored
Add Django 6.0 to testing matrix (#2249)
1 parent d04496a commit 5321f6d

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docs/changes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Pending
77
* Deprecated ``RedirectsPanel`` in favor of ``HistoryPanel`` for viewing
88
toolbar data from redirected requests.
99
* Fixed support for generating code coverage comments in PRs.
10+
* Added Django 6.0 to the testing matrix.
1011

1112
6.1.0 (2025-10-30)
1213
------------------

tox.ini

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ 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,52}-{sqlite,postgresql,psycopg3,postgis,mysql}
8-
py{313}-dj{51,52,main}-{sqlite,psycopg3,postgis3,mysql}
9-
py{314}-dj{52,main}-{sqlite,psycopg3,postgis3,mysql}
7+
py{310,311}-dj{42,50,51,52}-{sqlite,postgresql,psycopg3,postgis,mysql}
8+
py{312}-dj{42,50,51,52,60}-{sqlite,postgresql,psycopg3,postgis,mysql}
9+
py{313}-dj{51,52,60,main}-{sqlite,psycopg3,postgis3,mysql}
10+
py{314}-dj{52,60,main}-{sqlite,psycopg3,postgis3,mysql}
1011

1112
[testenv]
1213
deps =
1314
dj42: django~=4.2.1
1415
dj50: django~=5.0.2
1516
dj51: django~=5.1.0
1617
dj52: django~=5.2.0a1
18+
dj60: django~=6.0a1
1719
djmain: https://github.com/django/django/archive/main.tar.gz
1820
postgresql: psycopg2-binary
1921
psycopg3: psycopg[binary]
@@ -54,28 +56,28 @@ pip_pre = True
5456
commands = python -b -W always -m coverage run -m django test -v2 {posargs:tests}
5557

5658

57-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,main}-{postgresql,psycopg3}]
59+
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-{postgresql,psycopg3}]
5860
setenv =
5961
{[testenv]setenv}
6062
DB_BACKEND = postgresql
6163
DB_PORT = {env:DB_PORT:5432}
6264

6365

64-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,main}-{postgis,postgis3}]
66+
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-{postgis,postgis3}]
6567
setenv =
6668
{[testenv]setenv}
6769
DB_BACKEND = postgis
6870
DB_PORT = {env:DB_PORT:5432}
6971

7072

71-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,main}-mysql]
73+
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-mysql]
7274
setenv =
7375
{[testenv]setenv}
7476
DB_BACKEND = mysql
7577
DB_PORT = {env:DB_PORT:3306}
7678

7779

78-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,main}-sqlite]
80+
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-sqlite]
7981
setenv =
8082
{[testenv]setenv}
8183
DB_BACKEND = sqlite3

0 commit comments

Comments
 (0)