From 948a1c3d03e5d9fed769d73786d240e40f8cebff Mon Sep 17 00:00:00 2001 From: cclauss Date: Wed, 15 May 2019 22:36:48 +0200 Subject: [PATCH 1/3] .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 be42ca569..711a880ae 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: From 31697022fdcdc2c6e78cb4e7dfc6df79658cc051 Mon Sep 17 00:00:00 2001 From: cclauss Date: Wed, 15 May 2019 23:59:36 +0200 Subject: [PATCH 2/3] Add Python 3.4 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 711a880ae..cb4c28861 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python python: + - : 3.4 - : 3.5 - : 3.6 - : 3.7 From 41aec089bc56972c3dbe54238fd340ef86741e09 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 16 May 2019 00:00:52 +0200 Subject: [PATCH 3/3] .travis.yml: The 'sudo' tag is now deprecated in Travis CI --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index cb4c28861..6c8e2ac8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: python python: - - : 3.4 - - : 3.5 - - : 3.6 - - : 3.7 + - 3.4 + - 3.5 + - 3.6 + - 3.7 dist: xenial services: - docker