From 32a66dd545678d990e3deb6290641070232f4044 Mon Sep 17 00:00:00 2001 From: Venu Vardhan Reddy Tekula Date: Mon, 2 Nov 2020 19:39:54 +0530 Subject: [PATCH] [travis] Support for python 3.6, 3.7 and 3.8 This code aims at aligning the CI tests across the different grimoirelab components. Python 3.5 is removed as its support period has ended and Python 3.6, 3.7 and 3.8 are now supported. The version of setuptools and pip has been downgraded as a hotfix to solve the failing CI tests. It must be related to the issue https://github.com/pypa/setuptools/issues/2353. Signed-off-by: Venu Vardhan Reddy Tekula Signed-off-by: lfpratik --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 81823d42f..9b1c0f148 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ language: python python: - - "3.5" - "3.6" + - "3.7" + - "3.8" sudo: false before_install: - - pip install --upgrade setuptools - - pip install --upgrade pip + - pip install --upgrade setuptools==49.6.0 + - pip install --upgrade pip==18.1 - pip install -r "requirements.txt" - pip install -r "requirements_tests.txt" - pip install flake8