Skip to content

Commit b2ae704

Browse files
add python 3.11 to CI, tox, trove classifers, and README
1 parent cca3b79 commit b2ae704

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.7', '3.8', '3.9', '3.10']
14+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1515
django-version: ['3.2', '4.0', '4.1', 'main']
1616

1717
exclude:

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ This app supports the following combinations of Django and Python:
4141
========== ========================
4242
Django Python
4343
========== ========================
44-
3.2 3.7, 3.8, 3.9, 3.10
45-
4.0 3.8, 3.9, 3.10
46-
4.1 3.8, 3.9, 3.10
44+
3.2 3.7, 3.8, 3.9, 3.10, 3.11
45+
4.0 3.8, 3.9, 3.10, 3.11
46+
4.1 3.8, 3.9, 3.10, 3.11
4747
========== ========================
4848

4949
Getting Help

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.8",
4040
"Programming Language :: Python :: 3.9",
4141
"Programming Language :: Python :: 3.10",
42+
"Programming Language :: Python :: 3.11",
4243
"License :: OSI Approved :: BSD License",
4344
],
4445
python_requires=">=3.7",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
4-
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
3+
py{37,38,39,310,311}-dj32-{sqlite3,postgres,mysql,mariadb},
4+
py{38,39,310,311}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
55
docs,
66
lint
77

@@ -11,6 +11,7 @@ python =
1111
3.8: py38, docs, lint
1212
3.9: py39
1313
3.10: py310
14+
3.11: py311
1415

1516
[gh-actions:env]
1617
DJANGO =

0 commit comments

Comments
 (0)