forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis: On Python3 use python3-version of pep8 gevent#38
Previously pep8 and pyflakes were installed using the default system Python. This changes 'make travis' to use the current Python version for those scripts as well. This affects pep8, at least: on Python3 it complains about space in `print (...)`.
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
language: python | ||
env: | ||
- PYTHONVER=2.6 | ||
- PYTHONVER=2.7 | ||
- PYTHONVER=3.3 | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "3.3" | ||
matrix: | ||
allow_failures: | ||
- env: PYTHONVER=3.3 | ||
script: sudo -E make travis | ||
- python: "3.3" | ||
script: make travis | ||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters