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 a30ef8b commit d41555cCopy full SHA for d41555c
.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
- python-version: [3.7, 3.8]
+ python-version: [3.7, 3.8, 3.9]
14
15
steps:
16
- uses: actions/checkout@v2
tox.ini
@@ -1,13 +1,14 @@
1
2
[tox]
3
envlist =
4
- py37-nocov,
5
- py38-{cov,mypy,lint,docs}
+ py3{7,8}-nocov,
+ py39-{cov,mypy,lint,docs}
6
7
[gh-actions]
8
python =
9
3.7: py37-nocov
- 3.8: py38-{cov,mypy,lint,docs}
+ 3.8: py38-nocov
+ 3.9: py39-{cov,mypy,lint,docs}
[testenv]
wheel = true
0 commit comments