diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-11-24 11:33:14 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-11-24 11:33:14 -0700 |
commit | 07b11e8676f43e9fe2f1dc1cb5c777728ada0f04 (patch) | |
tree | df48fbc92e1ea2a920cec8032b6f0c12e7dd9588 /MANIFEST.in | |
parent | 239917609779503d0b4071d59d5b780df6e5b575 (diff) | |
download | numpy-07b11e8676f43e9fe2f1dc1cb5c777728ada0f04.tar.gz |
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.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 56d40efbf..3695dfe57 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 |