summaryrefslogtreecommitdiff
path: root/numpy/doc/pyrex/setup.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-01-31 13:32:31 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-01-31 13:32:31 +0000
commit7763133ec4c3d51d37b5205a1740e574f20963ae (patch)
tree599500dca089d35c8d76828d9b8f26cac61ea09e /numpy/doc/pyrex/setup.py
parent2ba9faa99b7f80a26fa6378f6797fca85f325e95 (diff)
downloadnumpy-7763133ec4c3d51d37b5205a1740e574f20963ae.tar.gz
Use get_include instead of get_numpy_include.
Diffstat (limited to 'numpy/doc/pyrex/setup.py')
-rw-r--r--numpy/doc/pyrex/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/pyrex/setup.py b/numpy/doc/pyrex/setup.py
index d081080d3..79fa363fa 100644
--- a/numpy/doc/pyrex/setup.py
+++ b/numpy/doc/pyrex/setup.py
@@ -31,7 +31,7 @@ else:
pyx_ext = Extension('numpyx',
pyx_sources,
- include_dirs = [numpy.get_numpy_include()])
+ include_dirs = [numpy.get_include()])
# Call the routine which does the real work
setup(name = 'numpyx',