Skip to content

Commit

Permalink
Add testing for Python 3.8 (#166)
Browse files Browse the repository at this point in the history
Add testing for Python 3.8
  • Loading branch information
nicoddemus authored Nov 5, 2019
2 parents 1c5e8e9 + 3fb27bf commit ed8216b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["2.7", "3.5", "3.6", "3.7"]
python: ["2.7", "3.5", "3.6", "3.7", "3.8"]
os: [ubuntu-latest, windows-latest]
include:
- python: "2.7"
Expand All @@ -21,6 +21,8 @@ jobs:
tox_env: "py36"
- python: "3.7"
tox_env: "py37"
- python: "3.8"
tox_env: "py38"

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,36,37}, linting, norewrite
envlist = py{27,34,35,36,37,38}, linting, norewrite

[testenv]
passenv = USER USERNAME
Expand Down

0 comments on commit ed8216b

Please sign in to comment.