Skip to content

Commit cf35f61

Browse files
committed
Added missing Python+Django versions to tox+docs
Also made the `docs` and `lint` environment run with Python 3.11 instead of 3.8, as it's the latest stable version.
1 parent 4fd72f8 commit cf35f61

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ This app supports the following combinations of Django and Python:
4343
========== ========================
4444
3.2 3.8, 3.9, 3.10
4545
4.0 3.8, 3.9, 3.10
46-
4.1 3.8, 3.9, 3.10, 3.11
46+
4.1 3.8, 3.9, 3.10, 3.11, 3.12-dev
47+
main 3.10, 3.11, 3.12-dev
4748
========== ========================
4849

4950
Getting Help

docs/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ This app supports the following combinations of Django and Python:
4343
========== =======================
4444
3.2 3.8, 3.9, 3.10
4545
4.0 3.8, 3.9, 3.10
46-
4.1 3.8, 3.9, 3.10, 3.11
46+
4.1 3.8, 3.9, 3.10, 3.11, 3.12-dev
47+
main 3.10, 3.11, 3.12-dev
4748
========== =======================
4849

4950
Contribute

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"Programming Language :: Python :: 3.9",
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
42+
"Programming Language :: Python :: 3.12",
4243
"License :: OSI Approved :: BSD License",
4344
],
4445
python_requires=">=3.8",

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ envlist =
33
py{38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
44
py{38,39}-dj{40,41}-{sqlite3,postgres,mysql,mariadb},
55
py310-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
6-
py311-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
6+
py{311,312}-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
77
docs,
88
lint
99

1010
[gh-actions]
1111
python =
12-
3.8: py38, docs, lint
12+
3.8: py38
1313
3.9: py39
1414
3.10: py310
15-
3.11: py311
15+
3.11: py311, docs, lint
16+
3.12: py312
1617

1718
[gh-actions:env]
1819
DJANGO =

0 commit comments

Comments
 (0)