william wrote: > Thanks Phillip. > > For people having the same problem as me, here after the solution ;-). > > I've generated (tg-admin quickstart) a project with old TG revision. > To adapt it with the new TG version (from svn), you mut update one file > generted by quickstart: <projectname>.egg-info/requires.txt. > > I've put there: TurboGears >= 0.9a0dev
The requires.txt file is normally generated by your setup.py, so if you found it in requires.txt, you should probably change it in setup.py instead, and run "setup.py egg_info" to update it. That way, if you do any other steps in the future like installing your project or building an egg from it, it won't change requires.txt back to what it was before. (Most any setup.py operation will rewrite the contents of require.txt.)

