Re: [Distutils] shebang line modified by setuptools

2008-04-17 Thread Ben Finney
Gael Varoquaux <[EMAIL PROTECTED]> writes: > On Mon, Apr 14, 2008 at 01:30:14PM +1200, Greg Ewing wrote: > > Maybe the system should come with two pythons installed, one for > > use by the system and the other for users to add things to. Or at > > least be set up so that it appears that way -- the

Re: [Distutils] desirability of multiple, divergent Python instances

2008-04-17 Thread Ben Finney
Stephen Waterbury <[EMAIL PROTECTED]> writes: > Ben Finney wrote: > > It's my position that the Python instance one uses for development > > should diverge as little as possible from the default system > > instance. Otherwise one is actively pursuing a recipe for > > dependency failures when one e

Re: [Distutils] How to test setup.py with easy_install?

2008-04-17 Thread skip
> "skip" == skip <[EMAIL PROTECTED]> writes: skip> So I've just added skip> install_requires=["lockfile>=0.2"] skip> to my setup() call. How do I test that from within my local skip> source repository? Okay, I figured it out. I wasn't thinking with all three of my ne

[Distutils] How to test setup.py with easy_install?

2008-04-17 Thread skip
So I've just added install_requires=["lockfile>=0.2"] to my setup() call. How do I test that from within my local source repository? Running "python setup.py install" doesn't seem to do anything with it (I didn't expect it to). I assume I have to get easy_install to process the setup.py fi