diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-21 09:49:02 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-21 09:49:02 +0000 |
commit | dbbf1bffae472d3e3c574a45546f892c6ef30b98 (patch) | |
tree | 6aeba25c1304dd9fb3a31cc742dee5d6eb36c785 | |
parent | a35153c83821f16e4e2a5c70e67aaf745f9accd5 (diff) | |
download | numpy-dbbf1bffae472d3e3c574a45546f892c6ef30b98.tar.gz |
BUG: forgot to add the multiarray_tests extension to distutils build.
-rw-r--r-- | numpy/core/setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index c25da264d..8e8bc82a5 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -704,6 +704,9 @@ def configuration(parent_package='',top_path=None): config.add_extension('umath_tests', sources = [join('src','umath', 'umath_tests.c.src')]) + config.add_extension('multiarray_tests', + sources = [join('src', 'multiarray', 'multiarray_tests.c.src')]) + config.add_data_dir('tests') config.add_data_dir('tests/data') |