-
Notifications
You must be signed in to change notification settings - Fork 31
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
Python 3 support #37
Comments
@scls19fr If don't really know how to immediately solve this problem but I'm happy to implement it if you found a solution! Let me know or create a pull request :) |
The particular ImportError that @scls19fr mentioned can be fixed in python3 by using relative paths to modules, like shown here However, after fixing that, there are still many other problems in python3, including all of the print statements and SimpleHTTPServer being replaced by http.server. There may be others, but i'm not sure. Have you tried running the 2to3 tool just to see if that works? |
six can help to maintain backward compatibility an other approach is to maintain backward compatibility by yourself in a Anyway six code can help |
Hello,
I think
python-highcharts
doesn't support Python 3because same import with Python 2 works fine
I'm using Anaconda Python with Python 3 as default Python install and I can switch to Python 2 using
Inspired from http://continuum.io/blog/anaconda-python-3
Any idea ?
The text was updated successfully, but these errors were encountered: