[Checkins] SVN: zope.sendmail/branches/3.7/ merged r116816 from trunk here to get tests fixed

Michael Howitz mh at gocept.com
Sat Sep 25 05:41:55 EDT 2010


Log message for revision 116821:
  merged r116816 from trunk here to get tests fixed
  

Changed:
  U   zope.sendmail/branches/3.7/CHANGES.txt
  U   zope.sendmail/branches/3.7/setup.py

-=-
Modified: zope.sendmail/branches/3.7/CHANGES.txt
===================================================================
--- zope.sendmail/branches/3.7/CHANGES.txt	2010-09-25 09:40:28 UTC (rev 116820)
+++ zope.sendmail/branches/3.7/CHANGES.txt	2010-09-25 09:41:55 UTC (rev 116821)
@@ -5,7 +5,7 @@
 3.7.3 (unreleased)
 ------------------
 
-- ...
+- Added not declared, but needed test dependency on `zope.component [test]`.
 
 
 3.7.2 (2010-04-30)

Modified: zope.sendmail/branches/3.7/setup.py
===================================================================
--- zope.sendmail/branches/3.7/setup.py	2010-09-25 09:40:28 UTC (rev 116820)
+++ zope.sendmail/branches/3.7/setup.py	2010-09-25 09:41:55 UTC (rev 116821)
@@ -16,13 +16,17 @@
 # When developing and releasing this package, please follow the documented
 # Zope Toolkit policies as described by this documentation.
 ##############################################################################
-"""Setup for zope.sendmail package
+"""Setup for zope.sendmail package"""
 
-$Id$
-"""
 from setuptools import setup, find_packages
 
 
+tests_require=[
+    'zope.security',
+    'zope.component [test]',
+    ]
+
+
 setup(name='zope.sendmail',
       version = '3.7.3dev',
       url='http://pypi.python.org/pypi/zope.sendmail',
@@ -37,14 +41,14 @@
       packages=find_packages('src'),
       package_dir={'': 'src'},
       namespace_packages=['zope',],
-      tests_require=['zope.security'],
-      extras_require=dict(test=['zope.security']),
+      tests_require=tests_require,
+      extras_require=dict(test=tests_require),
       install_requires=['setuptools',
                         'transaction',
                         'zope.i18nmessageid',
                         'zope.interface',
                         'zope.schema',
-                        # it's only needed for vocabulary and zcml
+                        # it's only needed for vocabulary, zcml and tests
                         'zope.component>=3.8.0',
                         # these are only needed for zcml
                         'zope.configuration',



More information about the checkins mailing list