Turns out I had turned off the deprecated Numpy API a year or so ago after I
updated Numpy. By removing my definition of the non deprecated Numpy Version
at the end of my ndarraytypes.h file, I was able to get the git version of
matplotlib to compile and install successfully.
Hope this helps anyon
Hi all,
I'm trying to build matplotlib 1.3.1 from source on a Windows 8.1 machine
via Cygwin. It seems I'm gettting similar errors to what Ben was above:
In file included from src/file_compat.h:7:0,
from src/ft2font.cpp:7:
src/ft2font.cpp: In member function ‘Py::Object FT2Image:
On Tue, Dec 4, 2012 at 1:10 PM, Michael Droettboom wrote:
> I think I see what's happened. I accidentally committed a #define in
> there when I was experimenting last week with removing deprecated Numpy
> APIs. It didn't cause things to break for me, but it looks like it could
> break things f
I think I see what's happened. I accidentally committed a #define in
there when I was experimenting last week with removing deprecated Numpy
APIs. It didn't cause things to break for me, but it looks like it
could break things for more recent Numpy's. I've just gone ahead and
reverted my cha
On Tue, Dec 4, 2012 at 10:43 AM, Michael Droettboom wrote:
> It looks like we're using the "old" Numpy API there. Did you recently
> update Numpy by any chance? I hadn't realised these APIs had been turned
> off yet, but maybe they are in git master. In any event, we should update
> these to
It looks like we're using the "old" Numpy API there. Did you recently
update Numpy by any chance? I hadn't realised these APIs had been
turned off yet, but maybe they are in git master. In any event, we
should update these to the new APIs (NPY_UBYTE instead of PyArray_UBYTE
etc.).
Cheers,