Skip to content

Commit

Permalink
travis.yml: unbreak python 3.5 builds
Browse files Browse the repository at this point in the history
Fix travis by relying on pip for install requirements.  Fixes an issue
where running `python test` would fail for python 3.5 as it would
install latest dependencies, of which may be incompatible with python
3.5.

Signed-off-by: Jamie Couture <[email protected]>
  • Loading branch information
couture-ql committed Jul 8, 2020
1 parent b279995 commit 6d266cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ python:
- "3.8"
install:
- pip install flake8
- pip install -r requirements.txt
script:
- flake8
- python -W always setup.py -q test
Expand Down

0 comments on commit 6d266cd

Please sign in to comment.