Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
Try to make travis run using the correct version of python.
  • Loading branch information
jorgebastida committed Dec 2, 2018
1 parent 3c69cd7 commit d0a8050
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
sudo: false
language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=lint
python: 3.5
matrix:
include:
- python: 2.6
env: TOX_ENV=py26
- python: 2.7
env: TOX_ENV=py27
- python: 3.3
env: TOX_ENV=py33
- python: 3.4
env: TOX_ENV=py34
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py36
- python: 3.7
env: TOX_ENV=py37
- python: 3.7
env: TOX_ENV=lint
install:
- pip install tox
script: tox -e $TOX_ENV
Expand Down

0 comments on commit d0a8050

Please sign in to comment.