From 9999d660ee263bc2a518a2c689a4690d2c714dca Mon Sep 17 00:00:00 2001 From: Marcel Rodrigues Date: Tue, 16 Jul 2013 23:20:26 -0300 Subject: [PATCH] Update info in README. --- README.rst | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/README.rst b/README.rst index f8794da..2e6996a 100644 --- a/README.rst +++ b/README.rst @@ -10,20 +10,18 @@ Documentation on the MySQL client/server protocol can be found here: http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol If you would like to run the test suite, edit the config parameters in pymysql/tests/base.py. The goal of pymysql is to be a drop-in -replacement for MySQLdb and work on CPython 2.3+, Jython, IronPython, PyPy -and Python 3. We test for compatibility by simply changing the import -statements in the Django MySQL backend and running its unit tests as well +replacement for MySQLdb and work on CPython, Jython, IronPython and PyPy. +We test for compatibility by simply changing the import statements +in the Django MySQL backend and running its unit tests as well as running it against the MySQLdb and myconnpy unit tests. Requirements ------------- -+ Python 2.4 or higher ++ Python 2.6, 2.7 or 3.3 * http://www.python.org/ - * 2.6 is the primary test environment. - * MySQL 4.1 or higher * protocol41 support, experimental 4.0 support @@ -31,12 +29,7 @@ Requirements Installation ------------ -# easy_install pymysql -# ... or ... +# pip install PyMySQL +# ... or ... # python setup.py install -Python 3.0 Support ------------------- - -Simply run the build-py3k.sh script from the local directory. It will -build a working package in the ./py3k directory.