Skip to content

Enabled python 3.7 in travis #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 26 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
sudo: false
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
# - '3.7'
- 'pypy'
matrix:
include:
- dist: trusty
sudo: false
python: 2.6
- dist: trusty
sudo: false
python: 2.7
- dist: trusty
sudo: false
python: 3.3
- dist: trusty
sudo: false
python: 3.4
- dist: trusty
sudo: false
python: 3.5
- dist: trusty
sudo: false
python: 3.6
- dist: xenial
sudo: true
python: 3.7
- dist: trusty
sudo: false
python: pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install virtualenv==15.2.0; fi
- pip install tox-travis
Expand Down