Skip to content

Commit 803365a

Browse files
authored
Merge pull request #30 from mlegner/support-3.11
add Python 3.11 support
2 parents 8a76a67 + adb994e commit 803365a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
steps:
1110
- uses: actions/checkout@v3
1211
- name: Set up Python
1312
uses: actions/setup-python@v4
1413
with:
15-
python-version: "3.10"
14+
python-version: "3.11"
1615

1716
- name: Install dependencies
1817
run: |

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def read(fname):
3737
"Programming Language :: Python :: 3.8",
3838
"Programming Language :: Python :: 3.9",
3939
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
4041
"Operating System :: OS Independent",
4142
"License :: Public Domain",
4243
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py36,py37,py38,py39,py310,flake8
3+
envlist = py36,py37,py38,py39,py310,py311,flake8
44

55
[testenv]
66
deps = pytest>=3.0

0 commit comments

Comments
 (0)