diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2011-04-02 13:23:30 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2011-04-02 19:59:58 +0200 |
commit | b8101c94e26ee21d3bdc49270efe14924ca08078 (patch) | |
tree | b70744dc62e6cc34412033d3ff04a16d6a61df58 | |
parent | 250245d49a62d9f26e755f1ba7b213f8cab2008c (diff) | |
download | numpy-b8101c94e26ee21d3bdc49270efe14924ca08078.tar.gz |
BLD: do not install swig/cython/pyrex files. See #1791.
This is not a complete fix yet. Should be handled correctly in binary
installers.
-rw-r--r-- | MANIFEST.in | 3 | ||||
-rwxr-xr-x | setup.py | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 6f2e8025f..e3c331628 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -21,3 +21,6 @@ include doc/Makefile doc/postprocess.py recursive-include doc/release * recursive-include doc/source * recursive-include doc/sphinxext * +recursive-include doc/cython * +recursive-include doc/pyrex * +recursive-include doc/swig * @@ -141,12 +141,6 @@ def configuration(parent_package='',top_path=None): config.add_subpackage('numpy') - # we want these files also in binaries/installed files, so it belongs here - # instead of in Manifest.in - config.add_data_files(('doc/cython/'), - ('doc/pyrex/'), - ('doc/swig/')) - config.get_version('numpy/version.py') # sets config.version return config |