From 6b09dacfbabcf546bec1c25406e2853dade87bbb Mon Sep 17 00:00:00 2001 From: Stepan Rakhimov Date: Sun, 14 Feb 2016 14:47:35 +0100 Subject: [PATCH] numpy fix to provide includes for other recipes --- recipes/numpy/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/numpy/__init__.py b/recipes/numpy/__init__.py index a30af2d..3ecdad4 100644 --- a/recipes/numpy/__init__.py +++ b/recipes/numpy/__init__.py @@ -9,6 +9,7 @@ class NumpyRecipe(CythonRecipe): url = "http://pypi.python.org/packages/source/n/numpy/numpy-{version}.tar.gz" library = "libnumpy.a" libraries = ["libnpymath.a", "libnpysort.a"] + include_dir = "numpy/core/include" depends = ["python"] pbx_frameworks = ["Accelerate"] cythonize = False @@ -51,5 +52,3 @@ class NumpyRecipe(CythonRecipe): shutil.rmtree(join(dest_dir, "tests")) recipe = NumpyRecipe() - -