Skip to content

Commit 3d3d010

Browse files
ulgenstim-schilling
authored andcommitted
1 parent f571734 commit 3d3d010

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

docs/changes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Pending
1515
find the toolbar window inside the shadow root.
1616
* Stopped the history panel buttons from submitting their form when clicked
1717
before the panel script has loaded, which navigated away from the page.
18+
* Added support for Django 6.1.
1819

1920
7.0.0 (2026-06-17)
2021
------------------

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Framework :: Django",
2020
"Framework :: Django :: 5.2",
2121
"Framework :: Django :: 6.0",
22+
"Framework :: Django :: 6.1",
2223
"Intended Audience :: Developers",
2324
"License :: OSI Approved :: BSD License",
2425
"Operating System :: OS Independent",

tox.ini

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ envlist =
44
docs
55
packaging
66
py{310,311}-dj{52}-{sqlite,postgresql,psycopg3,postgis,mysql}
7-
py{312}-dj{52,60}-{sqlite,postgresql,psycopg3,postgis,mysql}
8-
py{313}-dj{52,60,main}-{sqlite,psycopg3,postgis3,mysql}
9-
py{314}-dj{52,60,main}-{sqlite,psycopg3,postgis3,mysql}
7+
py{312}-dj{52,60,61}-{sqlite,postgresql,psycopg3,postgis,mysql}
8+
py{313}-dj{52,60,61,main}-{sqlite,psycopg3,postgis3,mysql}
9+
py{314}-dj{52,60,61,main}-{sqlite,psycopg3,postgis3,mysql}
1010

1111
[testenv]
1212
deps =
1313
dj52: django~=5.2.0
1414
dj60: django~=6.0
15+
dj61: django~=6.1
1516
djmain: https://github.com/django/django/archive/main.tar.gz
1617
postgresql: psycopg2-binary
1718
psycopg3: psycopg[binary]
@@ -54,28 +55,28 @@ dependency_groups =
5455
commands = python -b -m coverage run -m django test -v2 {posargs:tests}
5556

5657

57-
[testenv:py{310,311,312,313,314}-dj{52,60,main}-{postgresql,psycopg3}]
58+
[testenv:py{310,311,312,313,314}-dj{52,60,61,main}-{postgresql,psycopg3}]
5859
setenv =
5960
{[testenv]setenv}
6061
DB_BACKEND = postgresql
6162
DB_PORT = {env:DB_PORT:5432}
6263

6364

64-
[testenv:py{310,311,312,313,314}-dj{52,60,main}-{postgis,postgis3}]
65+
[testenv:py{310,311,312,313,314}-dj{52,60,61,main}-{postgis,postgis3}]
6566
setenv =
6667
{[testenv]setenv}
6768
DB_BACKEND = postgis
6869
DB_PORT = {env:DB_PORT:5432}
6970

7071

71-
[testenv:py{310,311,312,313,314}-dj{52,60,main}-mysql]
72+
[testenv:py{310,311,312,313,314}-dj{52,60,61,main}-mysql]
7273
setenv =
7374
{[testenv]setenv}
7475
DB_BACKEND = mysql
7576
DB_PORT = {env:DB_PORT:3306}
7677

7778

78-
[testenv:py{310,311,312,313,314}-dj{52,60,main}-sqlite]
79+
[testenv:py{310,311,312,313,314}-dj{52,60,61,main}-sqlite]
7980
setenv =
8081
{[testenv]setenv}
8182
DB_BACKEND = sqlite3

0 commit comments

Comments
 (0)