Re: [Numpy-discussion] Header files in windows installers

2014-02-21 Thread Matt Newell
On Friday, February 21, 2014 08:24:15 AM Chris Barker wrote: > > I was unpleasantly surprised to discover that the numpy installers for > > > >> window > >> do not have an option to install the include files, which appear to be > >> all that > >> is needed to compile extensions that use numpy's

Re: [Numpy-discussion] Header files in windows installers

2014-02-21 Thread Chris Barker
> > I was unpleasantly surprised to discover that the numpy installers for >> window >> do not have an option to install the include files, which appear to be >> all that >> is needed to compile extensions that use numpy's C-api. >> > > That would be a bug. They can't all be missing though, becaus

Re: [Numpy-discussion] Header files in windows installers

2014-02-20 Thread Ralf Gommers
On Thu, Feb 20, 2014 at 6:33 PM, Matt Newell wrote: > > I have a small c++ extension used to feed a 1d numpy array into a > QPainterPath. Very simple just using PyArray_[Check|FLAGS|SIZE|DATA]. > I developed it on debian which was of course very straightforward, but now > I > need to deploy on w

[Numpy-discussion] Header files in windows installers

2014-02-20 Thread Matt Newell
I have a small c++ extension used to feed a 1d numpy array into a QPainterPath. Very simple just using PyArray_[Check|FLAGS|SIZE|DATA]. I developed it on debian which was of course very straightforward, but now I need to deploy on windows, which is of course where the fun always begins. I was