On 10/17/05, Aaron <[EMAIL PROTECTED]> wrote: > > Personally (and I may be wrong) when I develop python apps for > production I use a copy of each library as well as a copy of python > itself. > So even if you have SQLObject-0.8dev_r1113-py2.4.egg in your main > site-packages, I would recommend a copy of > SQLObject-0.7b1dev-py2.4.egg in the same directory as your TG project. > I've been thinking about how to use the dev.cfg / test.cfg / > production.cfg to set the python path.
I'd recommend reading more of the info about setuptools. setuptools lets you have multiple versions of packages installed. You can set your active version. You could also change setup.py to require a specific version. Its powerful stuff and it eliminates the need to keep local copies of things. > Its the Java developer in me - a complete web app that weighs in at > less then 15 meg just can't be taken seriously ;) I'm more than happy to give up that mindset. Kevin -- Kevin Dangoor Author of the Zesty News RSS newsreader email: [EMAIL PROTECTED] company: http://www.BlazingThings.com blog: http://www.BlueSkyOnMars.com

