Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-26 Thread Stéfan van der Walt
On 26 August 2010 16:42, Ralf Gommers wrote: >> > Without this patch, numpy.distutils is broken on, amongs others, >> > Ubuntu.  This prohibits packages such as Enthought's Enable from being >> > built successfully. >> > >> > Would anyone object if I applied it to trunk? >> > Ehm, didn't you apply

Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-26 Thread Ralf Gommers
On Wed, Aug 25, 2010 at 6:58 PM, David Cournapeau wrote: > 2010/8/25 Stéfan van der Walt : > > Hi all, > > > > Without this patch, numpy.distutils is broken on, amongs others, > > Ubuntu. This prohibits packages such as Enthought's Enable from being > > built successfully. > > > > Would anyone ob

Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-25 Thread David Cournapeau
2010/8/25 Stéfan van der Walt : > Hi all, > > Without this patch, numpy.distutils is broken on, amongs others, > Ubuntu.  This prohibits packages such as Enthought's Enable from being > built successfully. > > Would anyone object if I applied it to trunk? Could you wait a bit more - I would like t

Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-25 Thread Stéfan van der Walt
Hi all, Without this patch, numpy.distutils is broken on, amongs others, Ubuntu. This prohibits packages such as Enthought's Enable from being built successfully. Would anyone object if I applied it to trunk? Regards Stéfan 2010/5/5 Stéfan van der Walt : > Hi all, > > Under Ubuntu, the NumPy h

[Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-05-05 Thread Stéfan van der Walt
Hi all, Under Ubuntu, the NumPy headers are dumped under /usr/include/python2.6. This is not the location that should be exposed when another copy of NumPy is installed. The attached patch lets from numpy.distutils.system_info import get_info print get_info['numpy'] return the correct path. H