Skip to content
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

Travis CI: Start testing on Python 3.7 #1774

Merged
merged 6 commits into from Feb 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions .travis.yml
Expand Up @@ -3,12 +3,15 @@ addons:
apt:
packages:
- libgeoip-dev
python:
- "2.7"
- "3.6"
matrix:
include:
- python: "2.7"
- python: "3.6"
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
allow_failures:
- python: "3.6"
- python: "3.7"
install:
- pip install flake8
- make lint
Expand Down
2 changes: 1 addition & 1 deletion requirements_common.txt
Expand Up @@ -15,7 +15,7 @@ supervisor==3.3.5; python_version < '3.0'
web.py==0.33; python_version < '3.0'
web.py==0.40-dev1; python_version >= '3.0'
pystatsd==0.1.6
PyYAML==4.2b1
PyYAML==4.2b4
eventer==0.1.1
lepl==5.1.3
six==1.12.0
Expand Down