From 2395d6bd39f8c4e92cdfabd206d501361baff1c7 Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 15 Jan 2019 12:15:40 +0100 Subject: [PATCH 1/3] Travis CI: 'sudo' tag is now deprecated in Travis [Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration). --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index adb693dd2..74c6bd909 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,8 @@ matrix: include: - python: 3.7 dist: xenial - sudo: required - python: "nightly" dist: xenial - sudo: required allow_failures: - python: "nightly" git: From c8e2d1244c53ef2e9a0858b46caffb1980ba6cc8 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 19 Jan 2019 21:53:40 +0100 Subject: [PATCH 2/3] Force a retest --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 74c6bd909..52c88eb44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - "3.5" - "3.6" # - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details) -matrix: +matrix: include: - python: 3.7 dist: xenial From 338cffed8d2374e1ab359ee3da52d72a17837121 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 19 Jan 2019 22:02:18 +0100 Subject: [PATCH 3/3] dist: xenial for all versions of Python --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 52c88eb44..e74e343d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: python +dist: xenial python: - "2.7" - "3.4"