[Checkins] SVN: grokcore.component/branches/1.7/ Fixed dependencies (copied from trunk)

Reinout van Rees reinout at vanrees.org
Thu Dec 10 07:47:39 EST 2009


Log message for revision 106390:
  Fixed dependencies (copied from trunk)

Changed:
  U   grokcore.component/branches/1.7/CHANGES.txt
  U   grokcore.component/branches/1.7/buildout.cfg
  U   grokcore.component/branches/1.7/setup.py

-=-
Modified: grokcore.component/branches/1.7/CHANGES.txt
===================================================================
--- grokcore.component/branches/1.7/CHANGES.txt	2009-12-10 12:43:59 UTC (rev 106389)
+++ grokcore.component/branches/1.7/CHANGES.txt	2009-12-10 12:47:38 UTC (rev 106390)
@@ -7,6 +7,7 @@
 * Add missing provider, global_adapter, implementsOnly, classProvides() to
   the module interface so that they are included in __all__
 
+* Fixed dependencies (copied from trunk).
 
 1.6 (2009-04-10)
 ----------------

Modified: grokcore.component/branches/1.7/buildout.cfg
===================================================================
--- grokcore.component/branches/1.7/buildout.cfg	2009-12-10 12:43:59 UTC (rev 106389)
+++ grokcore.component/branches/1.7/buildout.cfg	2009-12-10 12:47:38 UTC (rev 106390)
@@ -12,4 +12,5 @@
 [test]
 recipe = zc.recipe.testrunner == 1.1.0
 eggs = grokcore.component
+       grokcore.component[test]
 defaults = ['--tests-pattern', '^f?tests$', '-v']

Modified: grokcore.component/branches/1.7/setup.py
===================================================================
--- grokcore.component/branches/1.7/setup.py	2009-12-10 12:43:59 UTC (rev 106389)
+++ grokcore.component/branches/1.7/setup.py	2009-12-10 12:47:38 UTC (rev 106390)
@@ -10,6 +10,10 @@
     read('CHANGES.txt')
     )
 
+tests_require = [
+    'zope.event',
+    ]
+
 setup(
     name='grokcore.component',
     version = '1.7',
@@ -36,7 +40,8 @@
                       'zope.component',
                       'zope.configuration',
                       'zope.interface',
-                      'zope.event', 
                       'zope.testing',
                       ],
+    tests_require=tests_require,
+    extras_require={'test': tests_require},
 )



More information about the checkins mailing list