From 07b11e8676f43e9fe2f1dc1cb5c777728ada0f04 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Tue, 24 Nov 2015 11:33:14 -0700 Subject: [PATCH] BUG: Include relevant files from numpy/linalg/lapack_lite in sdist. After 1e436a5 *.h and *.c files from numpy/linalg/lapack_lite were no longer included in source distributions. Fix this by adding them to MANIFEST.in. Closes #6694. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 56d40efbf1fd..3695dfe57cfa 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,6 +11,7 @@ include numpy/random/mtrand/generate_mtrand_c.py recursive-include numpy/random/mtrand *.pyx *.pxd # Add build support that should go in sdist, but not go in bdist/be installed recursive-include numpy/_build_utils * +recursive-include numpy/linalg/lapack_lite *.c *.h # Add sdist files whose use depends on local configuration. include numpy/core/src/multiarray/cblasfuncs.c include numpy/core/src/multiarray/python_xerbla.c