Skip to content

Commit

Permalink
[travis] Upgrade setuptools and pip
Browse files Browse the repository at this point in the history
This code upgrades the setuptools and pip. This change
stems from the fix at:
chaoss/grimoirelab-perceval#643.
It was needed to fix the CI tests that were failing due
to the following error:

```
File "../python3.5/site-packages/setuptools/sandbox.py", line 44, in _execfile
  code = compile(script, filename, 'exec')
File "/tmp/easy_install-wu9lgsxc/pandoc-2.0a4/setup.py", line 11
  error = f"pip is not installed, refer to <{url}> for instructions."
                                                                    ^
SyntaxError: invalid syntax
```

Signed-off-by: Valerio Cosentino <[email protected]>
  • Loading branch information
valeriocos committed Apr 8, 2020
1 parent 85e39c2 commit f342c6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ python:
sudo: false

before_install:
- pip install --upgrade setuptools
- pip install --upgrade pip
- pip install -r "requirements.txt"
- pip install -r "requirements_tests.txt"
- pip install flake8
Expand Down

0 comments on commit f342c6b

Please sign in to comment.