[Checkins] SVN: zope.exceptions/trunk/ Prep 4.0.0 release.

Tres Seaver cvs-admin at zope.org
Wed May 16 17:01:23 UTC 2012


Log message for revision 125906:
  Prep 4.0.0 release.

Changed:
  U   zope.exceptions/trunk/CHANGES.txt
  U   zope.exceptions/trunk/setup.py

-=-
Modified: zope.exceptions/trunk/CHANGES.txt
===================================================================
--- zope.exceptions/trunk/CHANGES.txt	2012-05-16 17:01:16 UTC (rev 125905)
+++ zope.exceptions/trunk/CHANGES.txt	2012-05-16 17:01:20 UTC (rev 125906)
@@ -2,7 +2,7 @@
 Changes
 =======
 
-4.0.0 (unreleased)
+4.0.0 (2012-05-16)
 ------------------
 
 - Automated build of Sphinx HTML docs and running doctest snippets via tox.

Modified: zope.exceptions/trunk/setup.py
===================================================================
--- zope.exceptions/trunk/setup.py	2012-05-16 17:01:16 UTC (rev 125905)
+++ zope.exceptions/trunk/setup.py	2012-05-16 17:01:20 UTC (rev 125906)
@@ -20,21 +20,14 @@
 """
 import os
 from setuptools import setup, find_packages
-import sys
 
-extra = {
-    'extras_require': {'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
-                       'testing': ['nose', 'coverage'],
-                      }
-}
 
-
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 
 setup(name='zope.exceptions',
-      version='4.0.0dev',
+      version='4.0.0',
       author='Zope Foundation and Contributors',
       author_email='zope-dev at zope.org',
       description='Zope Exceptions',
@@ -68,4 +61,8 @@
       test_suite = 'zope.exceptions.tests',
       include_package_data = True,
       zip_safe = False,
-      **extra)
+      extras_require = {
+        'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
+        'testing': ['nose', 'coverage'],
+      },
+)



More information about the checkins mailing list