We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b7ad6 commit 3dd938eCopy full SHA for 3dd938e
.github/workflows/tests.yaml
@@ -32,7 +32,7 @@ jobs:
32
runs-on: ${{ matrix.os }}
33
strategy:
34
matrix:
35
- python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10', '3.11-dev']
+ python-version: ['pypy-3.7', '3.7', '3.8', '3.9', '3.10', '3.11']
36
os: [ubuntu-latest, macos-latest, windows-latest]
37
continue-on-error: ${{ matrix.python-version == '3.11-dev' }}
38
pyproject.toml
@@ -18,10 +18,6 @@ classifiers = [
18
"Operating System :: Microsoft :: Windows",
19
"Operating System :: POSIX :: Linux",
20
"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",
25
"Programming Language :: Python :: Implementation :: CPython",
26
"Programming Language :: Python :: Implementation :: PyPy",
27
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -51,10 +47,10 @@ profile = "black"
51
47
legacy_tox_ini = '''
52
48
[tox]
53
49
# 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}
55
isolated_build = True
56
57
-[testenv:py{37,38,39,310}]
+[testenv:py{37,38,39,310,311}]
58
description = run tests against a built package
59
commands =
60
python -m unittest {posargs}
0 commit comments