Skip to content

Commit

Permalink
Merge pull request #120 from laterpay/python37
Browse files Browse the repository at this point in the history
Add Python 3.7 (current stable) to the test matrix, drop Python 3.3 & 3.4, both of which are no longer supported. cf https://devguide.python.org/devcycle/#end-of-life-branches
  • Loading branch information
Stig Brautaset committed Jul 12, 2019
2 parents 43a21df + 05e2975 commit 1aab71d
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
sudo: false
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//./},flake8,pydocstyle
- coveralls
matrix:
fast_finish: true
include:
- python: 2.7
dist: trusty
sudo: false
- python: 3.5
dist: trusty
sudo: false
- python: 3.6
dist: trusty
sudo: false
- python: 3.7
dist: xenial
sudo: true

0 comments on commit 1aab71d

Please sign in to comment.