diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-09-23 14:52:40 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-09-23 15:14:23 -0600 |
commit | 32a6b4547f8f94e481f7d1a6e2656c9fa9c6c62e (patch) | |
tree | 320bf5f29e208b31369b319bb1e64dc688f37f51 /MANIFEST.in | |
parent | fe857457d4f3fa268495cb962521769bd4ce1da0 (diff) | |
download | numpy-32a6b4547f8f94e481f7d1a6e2656c9fa9c6c62e.tar.gz |
BUG: Add cblasfuncs.c and python_xerbla.c to MANIFEST.in
Those files in numpy/core/src/multiarray were only included in source
distributions when HAVE_CBLAS was defined, making the distribution
contents depend on the local configuration.
Closes #6343.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 976e283ed..6f4826478 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,6 +12,9 @@ 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 * +# Add sdist files whose use depends on local configuration. +include numpy/core/src/multiarray/cblasfuncs.c +include numpy/core/src/multiarray/python_xerbla.c # Adding scons build related files not found by distutils recursive-include numpy/core/code_generators *.py *.txt recursive-include numpy/core *.in *.h |