Add python 3.9-dev to CI tests (#3687)

* Add python 3.9-dev to ci tests

* test integration tests on latest versions of python
This commit is contained in:
jtpavlock 2020-07-25 13:02:19 -07:00 committed by GitHub
parent a2f66a0427
commit f73a438dce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9-dev]
env:
PY_COLORS: 1
@ -82,4 +82,4 @@ jobs:
python -m pip install tox sphinx
- name: Lint with flake8
run: tox -e py-lint
run: tox -e py-lint

View file

@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up latest Python version
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9-dev
- name: Install base dependencies
run: |