-
Notifications
You must be signed in to change notification settings - Fork 166
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
Migrate Python depencies to Python 3 #1077
Comments
... actually, do we really need this Python dependencies for standard users? Because as it is only used in Git Hooks, it might only targeted for Developers / Contributors, no? |
Also, need to update version of Currently: That version in list of dependencies is very old and only supports Python 2.7, but support of Python 3 has been added in 2019: nodejs/node-gyp@3d1c60a The At the moment of this issue the latest version of @gumptious Do you think we could upgrade the version of |
hmm... i think upgrading node-gyp, could also solve this little problem here |
Great Project here!
I found it strange to have dependencies to Python2 to only use it for Git hooks.
I propose to migrate to Python 3 (or at least making it compatible with both Python 2 and Python 3).
The only thing to update in these scripts is actually the
print
:print "..."
=>print("...")
The text was updated successfully, but these errors were encountered: