
Dec. 14, 2010
6:07 p.m.
Hello. I have been struggling a bit with using buildout for developing eggs and would appreciate some advice. "." is added to the end of sys.path, so the older version of the package (installed in eggs/) is used instead. If I add the following code, it works. But I feel like I'm missing something and this should not be needed: ====================== [python] initialization = import sys sys.path.insert(0, '.') ====================== Any ideas? Thanks, Devin === my buildout.cfg === [buildout] parts = python develop = . [python] recipe = z3c.recipe.scripts eggs = myegg ======================