From 6202e58c0483e63a01b77c91cdfe4ce326c7d9d6 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Thu, 21 Nov 2019 09:16:04 +0100 Subject: [PATCH] Update python runtime environments - Python 2.7 is dead in a month or so. - Travis CI breaks on 3.3 (can't download it) - Python 3.4 shouldn't be alive and it's not even supported by major linux distros. - 3.8 is not enabled because it doesn't pass yet. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index dc4efbd..50d891a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,8 @@ language: python python: -- '2.7' -- '3.3' -- '3.4' - '3.5' +- '3.6' +- '3.7' install: - pip install -r requirements.txt - pip install -r test_requirements.txt