Skip to content

Commit a7b3851

Browse files
Add Python 3.11 to CI, tox, and trove classifiers (#90)
* add python 3.11 to CI, tox, and trove classifiers * python 3.11 only officially supported by Django 4.1+
1 parent 5469133 commit a7b3851

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- "3.8"
3838
- "3.9"
3939
- "3.10"
40+
- "3.11"
4041
exclude:
4142
# Windows 2.7 doesn't work because Microsoft removed stuff we needed.
4243
- os: windows-latest

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def read(*names, **kwargs):
3838
Programming Language :: Python :: 3.8
3939
Programming Language :: Python :: 3.9
4040
Programming Language :: Python :: 3.10
41+
Programming Language :: Python :: 3.11
4142
Programming Language :: Python :: Implementation :: CPython
4243
Programming Language :: Python :: Implementation :: PyPy
4344
Topic :: Software Development :: Quality Assurance

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ envlist =
2020
py38-django{22,32,40,tip},
2121
py39-django{22,32,40,tip},
2222
py310-django{32,40,tip},
23+
py311-django{tip},
2324
check,pkgcheck,doc
2425

2526
[testenv]
@@ -79,3 +80,4 @@ python =
7980
3.8: py38
8081
3.9: py39
8182
3.10: py310
83+
3.11: py311

0 commit comments

Comments
 (0)