.travis.yml: Try to build with Python 3.8-dev

But allow failures.
This commit is contained in:
Alan Orth 2020-03-29 16:40:11 +03:00
parent 8fda8f1ef1
commit 8a267bb40b
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev" # 3.8 development branch
jobs:
allow_failures:
- python: "3.8-dev"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"