[Checkins] SVN: zope.app.i18n/trunk/ Added a missing testing dependency on zope.app.component.

Jim Fulton jim at zope.com
Sat Aug 15 09:52:23 EDT 2009


Log message for revision 102801:
  Added a missing testing dependency on zope.app.component.
  

Changed:
  U   zope.app.i18n/trunk/CHANGES.txt
  U   zope.app.i18n/trunk/setup.py

-=-
Modified: zope.app.i18n/trunk/CHANGES.txt
===================================================================
--- zope.app.i18n/trunk/CHANGES.txt	2009-08-15 13:37:03 UTC (rev 102800)
+++ zope.app.i18n/trunk/CHANGES.txt	2009-08-15 13:52:23 UTC (rev 102801)
@@ -2,10 +2,10 @@
 CHANGES
 =======
 
-3.6.1 (unreleased)
+3.6.1 (2009-08-15)
 ------------------
 
-- ...
+- Added a missing testing dependency on zope.app.component.
 
 3.6.0 (2009-03-18)
 ------------------
@@ -23,7 +23,7 @@
      ``zope.publisher``.
 
 - Depend on zope.component >= 3.6 instead of zope.app.component as the
-  `queryNextUtility` function was moved there. 
+  `queryNextUtility` function was moved there.
 
 - Remove the old ``zope.app.i18n.metadirectives`` module as the directive was
   moved to ``zope.i18n`` ages ago.

Modified: zope.app.i18n/trunk/setup.py
===================================================================
--- zope.app.i18n/trunk/setup.py	2009-08-15 13:37:03 UTC (rev 102800)
+++ zope.app.i18n/trunk/setup.py	2009-08-15 13:52:23 UTC (rev 102801)
@@ -49,7 +49,7 @@
     packages=find_packages('src'),
     package_dir = {'': 'src'},
     namespace_packages=['zope', 'zope.app'],
-    extras_require = dict(test=['zope.app.testing']),
+    extras_require = dict(test=['zope.app.testing', 'zope.app.component']),
     install_requires=['setuptools',
                       'zope.app.publisher',
                       'zope.component>=3.6',



More information about the Checkins mailing list