Merge pull request #4331 from pallets/test-python-versions
test Python 3.10 and 3.11
This commit is contained in:
commit
7a5aa570c0
4 changed files with 10 additions and 8 deletions
12
.github/workflows/tests.yaml
vendored
12
.github/workflows/tests.yaml
vendored
|
|
@ -24,14 +24,16 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
|
- {name: Linux, python: '3.10', os: ubuntu-latest, tox: py310}
|
||||||
- {name: Windows, python: '3.9', os: windows-latest, tox: py39}
|
- {name: Windows, python: '3.10', os: windows-latest, tox: py310}
|
||||||
- {name: Mac, python: '3.9', os: macos-latest, tox: py39}
|
- {name: Mac, python: '3.10', os: macos-latest, tox: py310}
|
||||||
|
- {name: '3.11-dev', python: '3.11-dev', os: ubuntu-latest, tox: py311}
|
||||||
|
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
|
||||||
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
|
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
|
||||||
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
|
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
|
||||||
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
|
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
|
||||||
- {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3}
|
- {name: 'PyPy', python: 'pypy-3.7', os: ubuntu-latest, tox: pypy37}
|
||||||
- {name: Typing, python: '3.9', os: ubuntu-latest, tox: typing}
|
- {name: Typing, python: '3.10', os: ubuntu-latest, tox: typing}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ pluggy==1.0.0
|
||||||
# tox
|
# tox
|
||||||
pre-commit==2.15.0
|
pre-commit==2.15.0
|
||||||
# via -r requirements/dev.in
|
# via -r requirements/dev.in
|
||||||
py==1.10.0
|
py==1.11.0
|
||||||
# via
|
# via
|
||||||
# pytest
|
# pytest
|
||||||
# tox
|
# tox
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ packaging==21.2
|
||||||
# via pytest
|
# via pytest
|
||||||
pluggy==1.0.0
|
pluggy==1.0.0
|
||||||
# via pytest
|
# via pytest
|
||||||
py==1.10.0
|
py==1.11.0
|
||||||
# via pytest
|
# via pytest
|
||||||
pyparsing==2.4.7
|
pyparsing==2.4.7
|
||||||
# via packaging
|
# via packaging
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
py{39,38,37,36,py3}
|
py3{11,10,9,8,7,6},pypy37
|
||||||
py39-click7
|
py39-click7
|
||||||
style
|
style
|
||||||
typing
|
typing
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue