Skip to content

Commit ed8216b

Browse files
authored
Add testing for Python 3.8 (#166)
Add testing for Python 3.8
2 parents 1c5e8e9 + 3fb27bf commit ed8216b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python: ["2.7", "3.5", "3.6", "3.7"]
13+
python: ["2.7", "3.5", "3.6", "3.7", "3.8"]
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- python: "2.7"
@@ -21,6 +21,8 @@ jobs:
2121
tox_env: "py36"
2222
- python: "3.7"
2323
tox_env: "py37"
24+
- python: "3.8"
25+
tox_env: "py38"
2426

2527
steps:
2628
- uses: actions/checkout@v1

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35,36,37}, linting, norewrite
2+
envlist = py{27,34,35,36,37,38}, linting, norewrite
33

44
[testenv]
55
passenv = USER USERNAME

0 commit comments

Comments
 (0)