Skip to content

Commit 34876b1

Browse files
authored
🧪 Add Python 3.11 CI (#251)
1 parent 73a0147 commit 34876b1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10']
34+
python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10', '3.11']
3535

3636
steps:
3737
- uses: actions/checkout@v2

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.8",
1919
"Programming Language :: Python :: 3.9",
2020
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ envlist = py37
99
[testenv]
1010
usedevelop = true
1111

12-
[testenv:py{37,38,39,310}]
12+
[testenv:py{37,38,39,310,311}]
1313
extras =
1414
linkify
1515
testing
1616
commands = pytest {posargs:tests/}
1717

18-
[testenv:py{37,38,39,310}-plugins]
18+
[testenv:py{37,38,39,310,311}-plugins]
1919
extras = testing
2020
changedir = {envtmpdir}
2121
allowlist_externals =

0 commit comments

Comments
 (0)