-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm wondering, ist it necessary to declare a dependency where we know that it is a required dependency for another dependency we already declare? Specifically, if CMFDefault is declared as dependency, is it necessary to also declare CMFCore because we know CMFDefault already declares it?
jens On Feb 16, 2009, at 11:42 , Yvo Schubbe wrote: > Log message for revision 96579: > - dependency cleanup > > Changed: > U Products.CMFCalendar/trunk/setup.py > > -=- > Modified: Products.CMFCalendar/trunk/setup.py > =================================================================== > --- Products.CMFCalendar/trunk/setup.py 2009-02-16 10:11:44 UTC (rev > 96578) > +++ Products.CMFCalendar/trunk/setup.py 2009-02-16 10:42:54 UTC (rev > 96579) > @@ -45,14 +45,19 @@ > setup_requires=['eggtestinfo', > ], > install_requires=[ > - #'Zope >= 2.10.4', > 'setuptools', > + #'Zope2 >= 2.10.4', > + 'Products.CMFCore', > 'Products.CMFDefault', > - 'Products.DCWorkflow', > 'Products.GenericSetup', > ], > - tests_require=['zope.testing>=3.7.0', > - ], > + tests_require=[ > + 'zope.testing >= 3.7.0', > + 'Products.DCWorkflow', > + ], > + extras_require = dict( > + test = ['Products.DCWorkflow'], > + ), > test_loader='zope.testing.testrunner.eggsupport:SkipLayers', > test_suite='Products.%s.tests' % NAME, > entry_points=""" > > _______________________________________________ > Checkins mailing list > [email protected] > http://mail.zope.org/mailman/listinfo/checkins -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (Darwin) iEYEARECAAYFAkmZVzUACgkQRAx5nvEhZLJ4OACggumqB1uszZgWL1Xs5qCMKDNY 2woAoKpVaHIuUnNhCjaoHyX35qpZcsHB =6ViM -----END PGP SIGNATURE----- _______________________________________________ Zope-CMF maillist - [email protected] http://mail.zope.org/mailman/listinfo/zope-cmf See https://bugs.launchpad.net/zope-cmf/ for bug reports and feature requests
