Skip to content

Commit ba154f5

Browse files
committed
Add Django 6.0 to testing matrix
1 parent 2886269 commit ba154f5

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
@@ -6,6 +6,7 @@ Pending
66

77
* Deprecated ``RedirectsPanel`` in favor of ``HistoryPanel`` for viewing
88
toolbar data from redirected requests.
9+
* Added Django 6.0 to the testing matrix.
910

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

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]
@@ -53,28 +55,28 @@ pip_pre = True
5355
commands = python -b -W always -m coverage run -m django test -v2 {posargs:tests}
5456

5557

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

6264

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

6971

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

7678

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

0 commit comments

Comments
 (0)