From 948a1c3d03e5d9fed769d73786d240e40f8cebff Mon Sep 17 00:00:00 2001 From: cclauss Date: Wed, 15 May 2019 22:36:48 +0200 Subject: [PATCH] .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 --- .travis.yml | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index be42ca56..711a880a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: