Skip to content

Commit d41555c

Browse files
committed
test Python 3.9
1 parent a30ef8b commit d41555c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.7, 3.8]
13+
python-version: [3.7, 3.8, 3.9]
1414

1515
steps:
1616
- uses: actions/checkout@v2

Diff for: tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11

22
[tox]
33
envlist =
4-
py37-nocov,
5-
py38-{cov,mypy,lint,docs}
4+
py3{7,8}-nocov,
5+
py39-{cov,mypy,lint,docs}
66

77
[gh-actions]
88
python =
99
3.7: py37-nocov
10-
3.8: py38-{cov,mypy,lint,docs}
10+
3.8: py38-nocov
11+
3.9: py39-{cov,mypy,lint,docs}
1112

1213
[testenv]
1314
wheel = true

0 commit comments

Comments
 (0)