Skip to content

Commit 4ae39f9

Browse files
matthiasktim-schilling
authored andcommitted
Remove Django 5.0 to save some CI resources
1 parent 9c2d243 commit 4ae39f9

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

docs/changes.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ 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.
10+
* Added Django 6.0 to the testing matrix. Removed Django 5.0 to save CI
11+
resources.
1112
* Show the cache backend alias and cache backend class name instead of
1213
the cache instance in the cache panel.
1314

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers = [
1818
"Environment :: Web Environment",
1919
"Framework :: Django",
2020
"Framework :: Django :: 4.2",
21-
"Framework :: Django :: 5.0",
2221
"Framework :: Django :: 5.1",
2322
"Framework :: Django :: 5.2",
2423
"Intended Audience :: Developers",

tox.ini

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

1212
[testenv]
1313
deps =
1414
dj42: django~=4.2.1
15-
dj50: django~=5.0.2
1615
dj51: django~=5.1.0
1716
dj52: django~=5.2.0a1
1817
dj60: django~=6.0a1
@@ -56,28 +55,28 @@ pip_pre = True
5655
commands = python -b -W always -m coverage run -m django test -v2 {posargs:tests}
5756

5857

59-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-{postgresql,psycopg3}]
58+
[testenv:py{39,310,311,312,313,314}-dj{42,51,52,60,main}-{postgresql,psycopg3}]
6059
setenv =
6160
{[testenv]setenv}
6261
DB_BACKEND = postgresql
6362
DB_PORT = {env:DB_PORT:5432}
6463

6564

66-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-{postgis,postgis3}]
65+
[testenv:py{39,310,311,312,313,314}-dj{42,51,52,60,main}-{postgis,postgis3}]
6766
setenv =
6867
{[testenv]setenv}
6968
DB_BACKEND = postgis
7069
DB_PORT = {env:DB_PORT:5432}
7170

7271

73-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-mysql]
72+
[testenv:py{39,310,311,312,313,314}-dj{42,51,52,60,main}-mysql]
7473
setenv =
7574
{[testenv]setenv}
7675
DB_BACKEND = mysql
7776
DB_PORT = {env:DB_PORT:3306}
7877

7978

80-
[testenv:py{39,310,311,312,313,314}-dj{42,50,51,52,60,main}-sqlite]
79+
[testenv:py{39,310,311,312,313,314}-dj{42,51,52,60,main}-sqlite]
8180
setenv =
8281
{[testenv]setenv}
8382
DB_BACKEND = sqlite3

0 commit comments

Comments
 (0)