Skip to content

Commit 9adb156

Browse files
Add Python 3.11 to CI, tox, and trove classifiers (#636)
* add python 3.11 to CI, tox, and trove classifiers * update CHANGELOG * python 3.11 only officially supported by Django 4.1+
1 parent 668f47e commit 9adb156

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
max-parallel: 5
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10']
18+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1919
django-version: ['2.2', '3.2', '4.0', '4.1', 'main']
2020
drf-version: ['3.10', '3.11', '3.12', '3.13']
2121
exclude:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
* Added support for Python 3.11 by @joshuadavidthomas in https://github.com/jazzband/djangorestframework-simplejwt/pull/636.
4+
35
## Version 5.2.2
46

57
Major security release

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"Programming Language :: Python :: 3.8",
8282
"Programming Language :: Python :: 3.9",
8383
"Programming Language :: Python :: 3.10",
84+
"Programming Language :: Python :: 3.11",
8485
"Topic :: Internet :: WWW/HTTP",
8586
],
8687
)

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist=
33
py{37,38,39}-dj22-drf310-pyjwt{171,2}-tests
44
py{37,38,39,310}-dj{22,32}-drf{311,312,313}-pyjwt{171,2}-tests
55
py{38,39,310}-dj{40,41,main}-drf313-pyjwt{171,2}-tests
6+
py311-dj{41,main}-drf313-pyjwt{171,2}-tests
67
docs
78

89
[gh-actions]
@@ -11,6 +12,7 @@ python=
1112
3.8: py38, docs
1213
3.9: py39
1314
3.10: py310
15+
3.11: py311
1416

1517
[gh-actions:env]
1618
DJANGO=

0 commit comments

Comments
 (0)