[Checkins] SVN: zc.queue/trunk/ Note that due to syntax we require Python 2.5 or higher now.

Maurits van Rees m.van.rees at zestsoftware.nl
Thu Jan 19 23:09:50 UTC 2012


Log message for revision 124093:
  Note that due to syntax we require Python 2.5 or higher now.

Changed:
  U   zc.queue/trunk/CHANGES.txt
  U   zc.queue/trunk/setup.py

-=-
Modified: zc.queue/trunk/CHANGES.txt
===================================================================
--- zc.queue/trunk/CHANGES.txt	2012-01-19 15:08:50 UTC (rev 124092)
+++ zc.queue/trunk/CHANGES.txt	2012-01-19 23:09:50 UTC (rev 124093)
@@ -13,6 +13,7 @@
 
 - Fixed a conflict resolution bug that didn't handle
   `ZODB.ConflictResolution.PersistentReference` correctly.
+  Note that due to syntax we require Python 2.5 or higher now.
 
 
 1.2.1 (2011-12-17)

Modified: zc.queue/trunk/setup.py
===================================================================
--- zc.queue/trunk/setup.py	2012-01-19 15:08:50 UTC (rev 124092)
+++ zc.queue/trunk/setup.py	2012-01-19 23:09:50 UTC (rev 124093)
@@ -16,7 +16,15 @@
     license="ZPL 2.1",
     author="Zope Project",
     author_email="zope-dev at zope.org",
-
+    # Get more strings from
+    # http://pypi.python.org/pypi?%3Aaction=list_classifiers
+    classifiers=[
+        "Programming Language :: Python",
+        "Programming Language :: Python :: 2",
+        "Programming Language :: Python :: 2.5",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 2.7",
+        ],
     namespace_packages=["zc"],
     packages=["zc", "zc.queue"],
     package_dir={"": "src"},



More information about the checkins mailing list