-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add Python 3.6 to CI #1821
Add Python 3.6 to CI #1821
Conversation
# PyLint does not yet support Python 3.6 https://github.com/PyCQA/pylint/issues/1241 | ||
if [ "$TRAVIS_PYTHON_VERSION" != "3.6" ]; then | ||
check_style --ci; | ||
fi |
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.
yeah, super annoy.
- Do not run pylint on 3.6 as pylint doesn’t support 3.6 yet - Add Python 3.6 to package classifiers
1eb9937
to
ad3037b
Compare
@troydai can you take a look at the updated PR? |
@derekbekoe On it. |
@@ -46,6 +46,10 @@ | |||
|
|||
# MOCK METHODS | |||
|
|||
# Workaround until https://github.com/kevin1024/vcrpy/issues/293 is fixed. | |||
vcr_connection_request = vcr.stubs.VCRConnection.request | |||
vcr.stubs.VCRConnection.request = lambda *args, **kwargs: vcr_connection_request(*args) |
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'm pretty sure flake8 will bad mouth this line of code. But we disable the style check here anyway.
Closes #1626