Skip to content

Commit e25213a

Browse files
committed
Add Python 3.11 tests
1 parent ab7d45f commit e25213a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
14+
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
1515

1616
steps:
1717
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def read(*names, **kwargs):
6060
'Programming Language :: Python :: 3.8',
6161
'Programming Language :: Python :: 3.9',
6262
'Programming Language :: Python :: 3.10',
63+
'Programming Language :: Python :: 3.11',
6364
'Programming Language :: Python :: Implementation :: CPython',
6465
'Programming Language :: Python :: Implementation :: PyPy',
6566
'Topic :: Utilities',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
envlist =
55
clean,
66
check,
7-
{py27,py35,py36,py38,py39,py310},
7+
{py27,py35,py36,py38,py39,py310,py311},
88
report,
99
docs
1010

@@ -17,6 +17,7 @@ python =
1717
3.8: py38
1818
3.9: py39
1919
3.10: py310
20+
3.11: py311
2021

2122
[testenv]
2223
setenv =

0 commit comments

Comments
 (0)