lilspikey schrieb: > svn co http://svn.turbogears.org/branches/1.0 turbogears > cd turbogears > python setup.py develop > > Which seemed to install everything ok, but then when I ran nosetests > several unit tests failes claiming they could not install SQLObject or > sqlalchemy. Next I tried what was outlined in "dealing with > dependencies":
> However this had little effect and didn't actually even checkout > sqlalchemy. > > I'm sure I am missing a key step. Perhaps I should have install TG > normally first (to get the right dependencies) and then retrieved the > dev version? > > Hope someone can help me figure out what I'm doing wrong. This is a limitation of setuptools. You can't specify extra requirements (like "TurboGears[testtools]") with "setup.py develop", so you have to install the dependencies for running tests manually (e.g. "easy_install SQLObject" etc.). Just look into the "setup.py" file of your TurboGears checkout to find out hwat they are. Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

