Travis CI: Update environment, remove Python 2.7 & add 3.8

- Updates the build environment from Ubuntu 16.04 Xenial to Ubuntu 18.04 Bionic
 - Removes Python 2.7 from the build matrix (since support has ended)
 - Adds Python 3.8 to the build matrix
This commit is contained in:
Ewout ter Hoeven 2020-04-29 22:55:23 +02:00 committed by GitHub
parent 2f75e73cb7
commit 80d028eb38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,10 @@
language: python
dist: xenial # required for Python >= 3.7
dist: bionic
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
install:
- "pip install -r requirements.txt -r dev_requirements.txt --timeout 45"