On Jul 08, 2010, at 10:45 AM, Fred Drake wrote: >On Thu, Jul 8, 2010 at 10:33 AM, Adam GROSZER <[email protected]> >wrote: >> Right now I even cannot get the buildout trunk bin/buildout'ed on >> ubuntu. Does it work for you? > >It builds for me (Python 2.6 w/ distribute; haven't tried with >setuptools), but the tests aren't passing because someone added a >dependency on zope.testing, but hasn't fixed the declared >dependencies.
Last time I tried with the Mailman 3 code base, it was broken, but I think
that was mainly due to API changes in zope.testing. I now have this in my
setup.py:
install_requires = [
'argparse',
'flufl.enum',
'flufl.i18n',
'httplib2',
'lazr.config',
'lazr.smtptest',
'locknix',
'restish',
'storm',
'zc.buildout',
'zope.component',
'zope.configuration',
'zope.interface',
'zope.testing<4',
],
Note the last line.
-Barry
signature.asc
Description: PGP signature
_______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
