Skip to content

Commit 4125a73

Browse files
authored
Merge pull request #11 from crapitea/version-3-11
Raise supported version to Python 3.11
2 parents 36b6998 + 5df1bd7 commit 4125a73

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
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
16+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
1717

1818
steps:
1919
- name: Check out repository code
@@ -39,4 +39,4 @@ jobs:
3939
pipenv run pip list --local
4040
4141
- name: Test with tox
42-
run: pipenv run tox
42+
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)