Skip to content

Commit 3dd938e

Browse files
Test against Python 3.11 final (#212)
1 parent b7b7ad6 commit 3dd938e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10', '3.11-dev']
35+
python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10', '3.11']
3636
os: [ubuntu-latest, macos-latest, windows-latest]
3737
continue-on-error: ${{ matrix.python-version == '3.11-dev' }}
3838

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ classifiers = [
1818
"Operating System :: Microsoft :: Windows",
1919
"Operating System :: POSIX :: Linux",
2020
"Programming Language :: Python :: 3 :: Only",
21-
"Programming Language :: Python :: 3.7",
22-
"Programming Language :: Python :: 3.8",
23-
"Programming Language :: Python :: 3.9",
24-
"Programming Language :: Python :: 3.10",
2521
"Programming Language :: Python :: Implementation :: CPython",
2622
"Programming Language :: Python :: Implementation :: PyPy",
2723
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -51,10 +47,10 @@ profile = "black"
5147
legacy_tox_ini = '''
5248
[tox]
5349
# Only run unittest envs when no args given to tox
54-
envlist = py{37,38,39,310}
50+
envlist = py{37,38,39,310,311}
5551
isolated_build = True
5652
57-
[testenv:py{37,38,39,310}]
53+
[testenv:py{37,38,39,310,311}]
5854
description = run tests against a built package
5955
commands =
6056
python -m unittest {posargs}

0 commit comments

Comments
 (0)