[Checkins] SVN: zope.componentvocabulary/trunk/ - Added not declared but needed dependency on ``zope.component``.

Michael Howitz mh at gocept.com
Sat Sep 25 08:23:48 EDT 2010


Log message for revision 116861:
  - Added not declared but needed dependency on ``zope.component``.
  
  - Added test extra to declare test dependency on ``zope.component [test]``.
  
  

Changed:
  U   zope.componentvocabulary/trunk/CHANGES.txt
  U   zope.componentvocabulary/trunk/buildout.cfg
  U   zope.componentvocabulary/trunk/setup.py

-=-
Modified: zope.componentvocabulary/trunk/CHANGES.txt
===================================================================
--- zope.componentvocabulary/trunk/CHANGES.txt	2010-09-25 12:23:35 UTC (rev 116860)
+++ zope.componentvocabulary/trunk/CHANGES.txt	2010-09-25 12:23:48 UTC (rev 116861)
@@ -5,9 +5,11 @@
 1.1 (unreleased)
 ----------------
 
-- Nothing changed yet.
+- Added not declared but needed dependency on ``zope.component``.
 
+- Added test extra to declare test dependency on ``zope.component [test]``.
 
+
 1.0 (2009-05-19)
 ----------------
 

Modified: zope.componentvocabulary/trunk/buildout.cfg
===================================================================
--- zope.componentvocabulary/trunk/buildout.cfg	2010-09-25 12:23:35 UTC (rev 116860)
+++ zope.componentvocabulary/trunk/buildout.cfg	2010-09-25 12:23:48 UTC (rev 116861)
@@ -4,11 +4,11 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.componentvocabulary
+eggs = zope.componentvocabulary [test]
 
 [coverage-test]
 recipe = zc.recipe.testrunner
-eggs = zope.componentvocabulary 
+eggs = zope.componentvocabulary
 defaults = ['--coverage', '../../coverage']
 
 [coverage-report]

Modified: zope.componentvocabulary/trunk/setup.py
===================================================================
--- zope.componentvocabulary/trunk/setup.py	2010-09-25 12:23:35 UTC (rev 116860)
+++ zope.componentvocabulary/trunk/setup.py	2010-09-25 12:23:48 UTC (rev 116861)
@@ -47,11 +47,16 @@
       namespace_packages=['zope'],
       install_requires=[
           'setuptools',
+          'zope.component',
           'zope.i18nmessageid',
           'zope.interface',
           'zope.schema',
           'zope.security',
           ],
+      extras_require=dict(
+          test=[
+              'zope.component [test]',
+              ]),
       include_package_data=True,
       zip_safe=False,
       )



More information about the checkins mailing list