-
Notifications
You must be signed in to change notification settings - Fork 406
Removed py34-flake8 and added py36-flake8. #822
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
Conversation
.travis.yml
Outdated
@@ -28,7 +28,7 @@ matrix: | |||
- python: pypy | |||
env: TOXENV=pypy | |||
- env: TOXENV=py27-flake8 | |||
- env: TOXENV=py34-flake8 | |||
- env: TOXENV=py36-flake8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may need to look like:
- env: TOXENV=py36-flake8
python: 3.6
Based on the Travis failures
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the py27-flake8
as well to explicitly use Python 2.7. I've also moved them under their respective Python versions.
.travis.yml
Outdated
@@ -17,18 +17,20 @@ matrix: | |||
include: | |||
- python: 2.7 | |||
env: TOXENV=py27 | |||
- python: 2.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you share why you re-ordered these? At the moment there's a list of testing followed by style environments. With this change it would be testing with style environments mixed in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought it was more organised when it's ordered by Python version. But I'll order it like it was before, my bad.
Squash and merge and those ugly commits are gone. 😄 |
See #731.