Author: darcy
Date: Mon Nov 16 23:45:30 2015
New Revision: 533

Log:
Change supported versions.

Modified:
   trunk/module/setup.py

Modified: trunk/module/setup.py
==============================================================================
--- trunk/module/setup.py       Mon Nov 16 23:41:34 2015        (r532)
+++ trunk/module/setup.py       Mon Nov 16 23:45:30 2015        (r533)
@@ -21,7 +21,7 @@
 * PostgreSQL pg_config tool (usually included in the devel package)
   (the Windows installer has it as part of the database server feature)
 
-The supported versions are Python 2.5-2.7 and PostgreSQL 8.3-9.2.
+The supported versions are Python 2.5-3.4 and PostgreSQL 8.3-9.3.
 
 Use as follows:
 python setup.py build   # to build the module
@@ -40,7 +40,7 @@
 
 import sys
 
-if not (2, 3) <= sys.version_info[:2] < (3, 0):
+if not (2, 5) <= sys.version_info[:2] <= (3, 4):
     raise Exception("Sorry, PyGreSQL %s"
         " does not support this Python version" % version)
 
_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql

Reply via email to