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 e9349f2 commit cdb230cCopy full SHA for cdb230c
.github/workflows/test.yaml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
fail-fast: false
10
matrix:
11
- py-version: ['3.8']
+ py-version: ['3.8', '3.9']
12
name: Python ${{ matrix.py-version }} Test
13
steps:
14
- name: Checkout
tox.ini
@@ -1,19 +1,21 @@
1
[tox]
2
-envlist = py{36,37,38}
+envlist = py{36,37,38,39}
3
skip_missing_interpreters=True
4
5
[gh-actions]
6
python =
7
3.6: py36
3.7: py37
3.8: py38,lint
+ 3.9: py39
[testenv]
basepython =
py35: python3.5
15
py36: python3.6
16
py37: python3.7
17
py38: python3.8
18
+ py39: python3.9
19
deps =
20
pytest
21
pytest-cov
0 commit comments