Skip to content

Commit

Permalink
Fix Python matrix for travis-ci
Browse files Browse the repository at this point in the history
refs #252
  • Loading branch information
brunobord committed Sep 20, 2017
1 parent 45bd690 commit 4ce0500
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
30 changes: 19 additions & 11 deletions .travis.yml
@@ -1,18 +1,26 @@
sudo: false
language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=flake8
script: tox -e $TOX_ENV
install:
- pip install tox

script:
- tox -e $TOXENV

matrix:
fast_finish: true
include:
# Python version is just for the look on travis.
- python: 2.7
env: TOXENV=py27

- python: 3.4
env: TOXENV=py34

- python: 3.5
env: TOXENV=py35

- python: 3.6
env:
- TOX_ENV=py36
env: TOXENV=py36

- python: 3.6
env:
- TOX_ENV=flake8
env: TOXENV=flake8
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -5,6 +5,7 @@ master (unreleased)
-------------------

- Dropped support for Python 3.3 (#245).
- Fixed Travis-ci configuration for Python 3.5 and al (#252).

2.3.1 (2017-07-27)
------------------
Expand Down

0 comments on commit 4ce0500

Please sign in to comment.