Skip to content

Commit

Permalink
[travis] Support for python 3.6, 3.7 and 3.8
Browse files Browse the repository at this point in the history
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 pypa/setuptools#2353.

Signed-off-by: Venu Vardhan Reddy Tekula <[email protected]>
Signed-off-by: lfpratik <[email protected]>
  • Loading branch information
vchrombie authored and lfpratik committed Jun 21, 2021
1 parent 5b2d7dc commit 32a66dd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 32a66dd

Please sign in to comment.