Add python 3.8 to CI

This commit is contained in:
Kyle Hornberg
2020-01-08 15:21:43 -06:00
parent 57b7f66556
commit 71f60a2006
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.6, 3.7]
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
+2 -1
View File
@@ -3,11 +3,12 @@
[tox]
envlist =
check,
{py3.7,py3.6},
{py3.8,py3.7,py3.6},
docs
[testenv]
basepython =
py3.8: {env:TOXPYTHON:python3.8}
py3.7: {env:TOXPYTHON:python3.7}
py3.6: {env:TOXPYTHON:python3.6}
{bootstrap,check,docs}: {env:TOXPYTHON:python3}