-
Notifications
You must be signed in to change notification settings - Fork 318
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 #62
base: master
Are you sure you want to change the base?
Python 3 support #62
Conversation
because it's generated from metadata.cfg and because I keep getting annoying diffs because of newline differences -- e.g.: $ git diff diff --git a/MySQLdb/release.py b/MySQLdb/release.py index 5c30a6c..4ce9412 100644 --- a/MySQLdb/release.py +++ b/MySQLdb/release.py @@ -1,4 +1,4 @@ - -__author__ = "Andy Dustman <farcepest@gmail.com>" -version_info = (1,2,4,'final',1) -__version__ = "1.2.4" + +__author__ = "Andy Dustman <farcepest@gmail.com>" +version_info = (1,2,4,'final',1) +__version__ = "1.2.4"
These are reasonably modern versions of Python that I think are worth supporting for the planned 1.3.0 release.
It makes tests take longer to install deps and now causes this error on Python < 2.7, because of IPython 2.0.0 requiring 2.7: ERROR: IPython requires Python Version 2.7 or above.
escape_string() -- only accepts bytes string_literal() -- Use ASCII to encode str(o)
I hope to have some time to review this and other pull requests this weekend. I'm in the process of moving and starting a new job over the next two weeks. |
I've created fork named mysqlclient. I hope my fork is merged back like setuptools and distribute. |
@farcepest Were you able to merge this PR? |
@farcepest Any update on merging this? |
For those who need Python 3 support, I recommend this fork: https://github.com/PyMySQL/mysqlclient-python |
@farcepest any hope to get it merged? |
If you're looking for a working (and maintained!) fork of this library that supports Python 3, check out mysqlclient-python |
This pull request is based on #31 and a lot of fix.