[pypy-commit] pypy numpy-includes: fix for new header path

mattip pypy.commits at gmail.com
Sat May 28 13:59:50 EDT 2016


Author: Matti Picus <matti.picus at gmail.com>
Branch: numpy-includes
Changeset: r84784:08f4b2961ce0
Date: 2016-05-28 12:39 +0300
http://bitbucket.org/pypy/pypy/changeset/08f4b2961ce0/

Log:	fix for new header path

diff --git a/pypy/module/cpyext/src/ndarrayobject.c b/pypy/module/cpyext/src/ndarrayobject.c
--- a/pypy/module/cpyext/src/ndarrayobject.c
+++ b/pypy/module/cpyext/src/ndarrayobject.c
@@ -1,7 +1,7 @@
 
 #include "Python.h"
 #include "pypy_numpy.h"
-#include "numpy/arrayobject.h"
+#include "_numpypy/numpy/arrayobject.h"
 #include <string.h>   /* memset, memcpy */
 
 void 


More information about the pypy-commit mailing list