-
Notifications
You must be signed in to change notification settings - Fork 393
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.4 support #80
Conversation
@@ -16,6 +13,22 @@ | |||
import json | |||
|
|||
|
|||
if sys.version < '3': |
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.
Isn't it better to use sys.version_info < (3,)
? (Not that Python 10 is on the horizon)
The classifiers in setup.py should be updated to list the supported Python 3 versions: 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4' |
Thank you salty horse, i've added your suggestions and push with --force flag to update this pull request |
Is this pull request stable? When is it planning to merge? Thanks. |
This pull request is stable, however it doesn't solve #78 which i plan to solve later |
@ozgur any news on this? Can you please consider this pull request? This could pave the way to other pull requests to support the newer API versions. |
💯 |
👏 |
Support both python 2.7 and python 3.4
Fix #77