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

Added Python 3.7 to Travis CI #789

Merged
merged 4 commits into from
Jul 8, 2018
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -13,6 +13,10 @@ matrix:
python: 3.6
- env: TOXENV=pypy
python: pypy2.7-5.10.0
- env: TOXENV=py37
python: 3.7
sudo: required
dist: xenial
install: pip install coveralls tox
script: tox
before_install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -41,7 +41,7 @@
'cfgv>=1.0.0',
'identify>=1.0.0',
'nodeenv>=0.11.1',
'pyyaml',
'pyyaml>=3.13',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be fine to just leave unbounded -- pip will choose the latest version already as long as it isn't a pre-release

'six',
'toml',
'virtualenv',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
project = pre_commit
# These should match the travis env list
envlist = py27,py35,py36,pypy
envlist = py27,py35,py36,py37,pypy
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

when adding py37, we can probably remove py35 -- we don't have any python3.5 specific code and I want to keep travis-ci fast :)


[testenv]
deps = -rrequirements-dev.txt
Expand Down