Skip to content

Commit 5df1bd7

Browse files
committed
Raise supported version to Python 3.11
At the present time, there is no reason why the maximum supported version shouldn't be 3.11.
1 parent 35c37fe commit 5df1bd7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/pr_checks.yaml

Lines changed: 2 additions & 2 deletions
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: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
14+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
1515

1616
steps:
1717
- name: Check out repository code
@@ -37,4 +37,4 @@ jobs:
3737
pipenv run pip list --local
3838
3939
- name: Test with tox
40-
run: pipenv run tox
40+
run: pipenv run tox

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers =
1515
Programming Language :: Python :: 3.8
1616
Programming Language :: Python :: 3.9
1717
Programming Language :: Python :: 3.10
18+
Programming Language :: Python :: 3.11
1819
License :: OSI Approved :: Apache Software License
1920
Operating System :: OS Independent
2021

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = True
3-
envlist = py36, py37, py38, py39, py310
3+
envlist = py36, py37, py38, py39, py310, py311
44

55
[gh-actions]
66
python =
@@ -9,6 +9,7 @@ python =
99
3.8: py38
1010
3.9: py39
1111
3.10: py310
12+
3.11: py311
1213

1314
[testenv]
1415
deps = pipenv

0 commit comments

Comments
 (0)