> > On Fri, 2008-13-06 at 00:56 -0700, iain duncan wrote: >> Thought I'd get back on the TG2 again, but I get the following when I >> try to check out Pylons from mecurial: >> >> $ hg clone http://pylonshq.com/hg/pylons-dev Pylons >> $ cd Pylons >> $ sudo python setup.py develop >> >> ... ( lotsa stuff ) >> Processing dependencies for Pylons==0.9.7beta5dev-20080613 >> Searching for WebOb>=0.9.2 >> Reading http://www.pylonshq.com/download/ >> Reading http://www.pylonshq.com/download/0.9.7 >> Reading http://pypi.python.org/simple/WebOb/ >> Reading http://pythonpaste.org/webob/ >> No local packages or download links found for WebOb>=0.9.2 >> error: Could not find suitable distribution for >> Requirement.parse('WebOb>=0.9.2') >> >> Anyone know what gives there? Should I be posting on pylons?
Yep, let them know at pylons-devel. It seems they have set their egg metadata wrong in Pylons' setup.py. For the meantime you can force setuptools to build an egg without the -dev suffix and install that. From a WebOb checkout do: python setup.py egg_info -RDb "" install To be sure make sure you remove all previous WebOb versions from site-packages manually before doing this. Alberto --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" 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-trunk?hl=en -~----------~----~----~----~------~----~------~--~---
