[Checkins] SVN: zope.schema/trunk/setup.py Version numbers have 3 digits. Remove trailing comma.

Jan Carel Brand cvs-admin at zope.org
Thu Mar 22 11:13:58 UTC 2012


Log message for revision 124688:
  Version numbers have 3 digits. Remove trailing comma.

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

-=-
Modified: zope.schema/trunk/setup.py
===================================================================
--- zope.schema/trunk/setup.py	2012-03-22 11:12:46 UTC (rev 124687)
+++ zope.schema/trunk/setup.py	2012-03-22 11:13:54 UTC (rev 124688)
@@ -68,11 +68,11 @@
         'six',
         ]
 
-if sys.version_info < (2 , 7):
-    REQUIRES += ['ordereddict'],
+if sys.version_info < (2, 7):
+    REQUIRES += ['ordereddict']
 
 setup(name='zope.schema',
-      version = '4.1dev',
+      version = '4.1.0dev',
       url='http://pypi.python.org/pypi/zope.schema',
       license='ZPL 2.1',
       description='zope.interface extension for defining data schemas',
@@ -93,7 +93,6 @@
       extras_require={'test': ['zope.testing'],
                       'docs': ['z3c.recipe.sphinxdoc']},
       install_requires=REQUIRES,
-      
       classifiers=[
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: Developers",



More information about the checkins mailing list