[Checkins] SVN: zope.testrunner/trunk/setup.py Add 3.2 and 3.3 to supported Python versions in setup.py.

Marius Gedminas cvs-admin at zope.org
Thu Feb 7 12:37:50 UTC 2013


Log message for revision 129164:
  Add 3.2 and 3.3 to supported Python versions in setup.py.
  
  Update version check to no longer accept 2.4 and 2.5.
  
  

Changed:
  U   zope.testrunner/trunk/setup.py

-=-
Modified: zope.testrunner/trunk/setup.py
===================================================================
--- zope.testrunner/trunk/setup.py	2013-02-07 12:36:46 UTC (rev 129163)
+++ zope.testrunner/trunk/setup.py	2013-02-07 12:37:49 UTC (rev 129164)
@@ -24,8 +24,8 @@
 from setuptools import setup
 from setuptools.command.test import test
 
-if sys.version_info < (2,4) or sys.version_info[:2] == (3,0):
-    raise ValueError("zope.testrunner requires Python 2.4 or higher, "
+if sys.version_info < (2,6) or sys.version_info[:2] == (3,0):
+    raise ValueError("zope.testrunner requires Python 2.6 or higher, "
                      "or 3.1 or higher.")
 
 
@@ -180,6 +180,8 @@
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
         "Programming Language :: Python :: 3.1",
+        "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: 3.3",
         "Topic :: Software Development :: Libraries :: Python Modules",
         "Topic :: Software Development :: Testing",
         ],



More information about the checkins mailing list