Skip to content

Commit 2ef831c

Browse files
committed
build: Run tests on Python 3.11.
Signed-off-by: Michael Seifert <[email protected]>
1 parent e6f2f96 commit 2ef831c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
name: Python ${{ matrix.python-version }}
5252
runs-on: ubuntu-latest
5353
env:
54-
USING_COVERAGE: 3.7,3.8,3.9,3.10
54+
USING_COVERAGE: 3.7,3.8,3.9,3.10,3.11
5555

5656
strategy:
5757
matrix:
58-
python-version: ['3.7', '3.8', '3.9', '3.10']
58+
python-version: ['3.7', '3.8', '3.9', '3.10', 3.11-dev]
5959

6060
steps:
6161
- uses: actions/checkout@v3

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.14.0
3-
envlist = py37, py38, py39, py310, lint, version-info, pytest-min
3+
envlist = py37, py38, py39, py310, py311, lint, version-info, pytest-min
44
isolated_build = true
55
passenv =
66
CI
@@ -52,4 +52,5 @@ python =
5252
3.8: py38
5353
3.9: py39
5454
3.10: py310
55+
3.11-dev: py311
5556
pypy3: pypy3

0 commit comments

Comments
 (0)