diff options
| author | Alex Willmer <alex@moreati.org.uk> | 2015-08-04 16:19:54 +0100 |
|---|---|---|
| committer | Alex Willmer <alex@moreati.org.uk> | 2015-08-04 18:31:15 +0100 |
| commit | 154fc44eb51a3358443b5813b8eef4a2f8bd2c28 (patch) | |
| tree | b84cc484d1d98a68f911425e9579fe1b2c862396 /numpy/setup.py | |
| parent | 9cd868a00cc488478ac4f07ee0b5452a38cb3cc0 (diff) | |
| download | numpy-154fc44eb51a3358443b5813b8eef4a2f8bd2c28.tar.gz | |
BLD: fix tests under Tox, include numpy.build_utils in the distribution
The sub-package is already included in bento builds, it appears
to have been missed from distutils.
This fixes the following error whilst running any tests with tox
```
ImportError: No module named build_utils.apple_accelerate
```
Diffstat (limited to 'numpy/setup.py')
| -rw-r--r-- | numpy/setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/setup.py b/numpy/setup.py index 2c3846271..a5e799e5f 100644 --- a/numpy/setup.py +++ b/numpy/setup.py @@ -5,6 +5,9 @@ from __future__ import division, print_function def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('numpy', parent_package, top_path) + + # If you update this list, then also update the file numpy/bento.info + config.add_subpackage('build_utils') config.add_subpackage('distutils') config.add_subpackage('testing') config.add_subpackage('f2py') |
