Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-10-06 Thread Ralf Gommers
On Sun, Sep 23, 2012 at 10:20 PM, Nathaniel Smith n...@pobox.com wrote: On Sat, Sep 22, 2012 at 1:18 PM, Ralf Gommers ralf.gomm...@gmail.com wrote: On Fri, Sep 21, 2012 at 11:39 PM, Nathaniel Smith n...@pobox.com wrote: So the question is, how do we get a .egg-info? For the specific case

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-23 Thread Nathaniel Smith
On Sat, Sep 22, 2012 at 1:18 PM, Ralf Gommers ralf.gomm...@gmail.com wrote: On Fri, Sep 21, 2012 at 11:39 PM, Nathaniel Smith n...@pobox.com wrote: So the question is, how do we get a .egg-info? For the specific case Ralf ran into, I'm pretty sure the solution is just that if you're clever

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-22 Thread Ralf Gommers
On Fri, Sep 21, 2012 at 11:39 PM, Nathaniel Smith n...@pobox.com wrote: On Fri, Sep 21, 2012 at 9:42 PM, Ralf Gommers ralf.gomm...@gmail.com wrote: Eh, just installing numpy with python setup.py install uses plain distutils, not setuptools. So there indeed isn't an entry in

[Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Ralf Gommers
Hi, An issue I keep running into is that packages use: install_requires = [numpy] or install_requires = ['numpy = 1.6'] in their setup.py. This simply doesn't work a lot of the time. I actually filed a bug against patsy for that (https://github.com/pydata/patsy/issues/5), but Nathaniel

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Travis Oliphant
On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: Hi, An issue I keep running into is that packages use: install_requires = [numpy] or install_requires = ['numpy = 1.6'] in their setup.py. This simply doesn't work a lot of the time. I actually filed a bug against patsy for

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Benjamin Root
On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant tra...@continuum.iowrote: On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: Hi, An issue I keep running into is that packages use: install_requires = [numpy] or install_requires = ['numpy = 1.6'] in their setup.py. This simply

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Andreas Hilboll
Am Fr 21 Sep 2012 22:37:13 CEST schrieb Benjamin Root: On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant tra...@continuum.io mailto:tra...@continuum.io wrote: On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: Hi, An issue I keep running into is that packages use:

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Ralf Gommers
On Fri, Sep 21, 2012 at 10:37 PM, Benjamin Root ben.r...@ou.edu wrote: On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant tra...@continuum.iowrote: On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: Hi, An issue I keep running into is that packages use: install_requires = [numpy] or

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Frédéric Bastien
On Fri, Sep 21, 2012 at 4:37 PM, Benjamin Root ben.r...@ou.edu wrote: On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant tra...@continuum.io wrote: On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: Hi, An issue I keep running into is that packages use: install_requires = [numpy] or

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread Nathaniel Smith
On Fri, Sep 21, 2012 at 9:42 PM, Ralf Gommers ralf.gomm...@gmail.com wrote: Eh, just installing numpy with python setup.py install uses plain distutils, not setuptools. So there indeed isn't an entry in easy-install.pth. Which some consider a feature:) I don't think this is correct. To be

Re: [Numpy-discussion] specifying numpy as dependency in your project, install_requires

2012-09-21 Thread josef . pktd
On Fri, Sep 21, 2012 at 5:39 PM, Nathaniel Smith n...@pobox.com wrote: On Fri, Sep 21, 2012 at 9:42 PM, Ralf Gommers ralf.gomm...@gmail.com wrote: Eh, just installing numpy with python setup.py install uses plain distutils, not setuptools. So there indeed isn't an entry in easy-install.pth.