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 wrote: > On Sat, Sep 22, 2012 at 1:18 PM, Ralf Gommers > wrote: > > On Fri, Sep 21, 2012 at 11:39 PM, Nathaniel Smith wrote: > >> So the question is, how do we get a .egg-info? For the specific case > >> Ralf ran into, I'm pretty sure the soluti

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 wrote: > On Fri, Sep 21, 2012 at 11:39 PM, Nathaniel Smith 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 enough to do an in-place build an

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 wrote: > On Fri, Sep 21, 2012 at 9:42 PM, Ralf Gommers > 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

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 wrote: > On Fri, Sep 21, 2012 at 9:42 PM, Ralf Gommers 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

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 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 clear on the technica

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 wrote: > > > On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant > 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 >> insta

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 wrote: > > > On Fri, Sep 21, 2012 at 4:19 PM, Travis Oliphant 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 >> install

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 > wrote: > > > On Sep 21, 2012, at 3:13 PM, Ralf Gommers wrote: > >> Hi, >> >> An issue I keep running into is that packages use: >> install

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 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 > install_requires = ['numpy >= 1.6'] > > in their setup.py. This simply doesn't w

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 pa

[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