-
Notifications
You must be signed in to change notification settings - Fork 3
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 #10
Add python 3.6 #10
Conversation
@@ -15,7 +15,7 @@ def run(self): | |||
"""Comença la tasca de neteja.""" | |||
_clean.run(self) | |||
if os.path.exists(self.build_base): | |||
print "Cleaning %s dir" % self.build_base | |||
print("Cleaning {} dir".format(self.build_base)) |
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.
Això no et funcionarà amb python2.7 si no fas un import que sigui:
from __future__ import print_statement
Changes Unknown when pulling b92e55c on test_python_3.6 into ** on master**. |
For now I will change that tests on py3 not are mandatory adding this to the matrix:
fast_finish: true
allow_failures:
- python: "3.6" |
@ecarreras I wouldn't close this PR because the purpose of it is to make the library working with python3.6. |
Closes #9
This PR is to make the library compatible with python 3.6