Skip to content

Commit e0c2fc8

Browse files
Add Python 3.11 to CI, tox, and trove classifiers (#1218)
* add python 3.11 to CI, tox, and trove classifiers * update CHANGELOG and AUTHORS * python 3.11 only officially supported by Django 4.1+
1 parent 70eaf47 commit e0c2fc8

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10']
12+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1313

1414
steps:
1515
- uses: actions/checkout@v2

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Jonas Nygaard Pedersen
5656
Jonathan Steffan
5757
Jordi Sanchez
5858
Joseph Abrahams
59+
Josh Thomas
5960
Jozef Knaperek
6061
Julien Palard
6162
Jun Zhou

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Changed
2020
* #1211 documentation improve on 'AUTHORIZATION_CODE_EXPIRE_SECONDS'.
21+
* #1218 Confim support for Python 3.11.
2122

2223
## [2.2.0] 2022-10-18
2324

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers =
2424
Programming Language :: Python :: 3.8
2525
Programming Language :: Python :: 3.9
2626
Programming Language :: Python :: 3.10
27+
Programming Language :: Python :: 3.11
2728
Topic :: Internet :: WWW/HTTP
2829

2930
[options]

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ envlist =
88
py{37,38,39}-dj22,
99
py{37,38,39,310}-dj32,
1010
py{38,39,310}-dj40,
11-
py{38,39,310}-dj41,
12-
py{38,39,310}-djmain,
11+
py{38,39,310,311}-dj41,
12+
py{38,39,310,311}-djmain,
1313

1414
[gh-actions]
1515
python =
1616
3.7: py37
1717
3.8: py38, docs, flake8, migrations, migrate_swapped, sphinxlint
1818
3.9: py39
1919
3.10: py310
20+
3.11: py311
2021

2122
[pytest]
2223
django_find_project = false

0 commit comments

Comments
 (0)