.travis.yml: The 'sudo' tag is now deprecated in Travis CI

[Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration).

"_If you currently specify __sudo: false__ in your __.travis.yml__, we recommend removing that configuration_"

Also, removed Python 3.4 because it is EOL  https://devguide.python.org/devcycle/#end-of-life-branches
This commit is contained in:
cclauss 2019-05-15 22:36:48 +02:00 committed by GitHub
parent 20371895c9
commit 948a1c3d03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 16 deletions

View File

@ -1,20 +1,9 @@
language: python
matrix:
include:
- python: 3.4
dist: trusty
sudo: false
- python: 3.5
dist: trusty
sudo: false
- python: 3.6
dist: trusty
sudo: false
- python: 3.7
dist: xenial
sudo: true
python:
- : 3.5
- : 3.6
- : 3.7
dist: xenial
services:
- docker
install: