Skip to content

Commit 60c376a

Browse files
authored
Support Python 3.11 (#69)
1 parent a28d380 commit 60c376a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python: ["3.7", "3.8", "3.9", "3.10"]
15+
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616
os: [ubuntu-22.04, windows-2022]
1717
steps:
1818
- name: Checkout

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
env_list = py{37,38,39,310}
2+
env_list = py{37,38,39,310,311}
33
isolated_build = True
44
passenv = *
55
setenv =
@@ -11,6 +11,7 @@ python =
1111
3.8: py38
1212
3.9: py39
1313
3.10: py310
14+
3.11: py311
1415

1516
[testenv]
1617
allowlist_externals =

0 commit comments

Comments
 (0)