diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-10-25 08:37:38 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-10-25 21:22:21 -0700 |
commit | 0709d92f78cc6e78ba79da9a25627db87059b31d (patch) | |
tree | 44d7b32460b84e232d85a9846055f9735b023440 /numpy/core/setup.py | |
parent | 44810f07ec6a281d96d6a69c105ce6ae59aec718 (diff) | |
download | numpy-0709d92f78cc6e78ba79da9a25627db87059b31d.tar.gz |
BLD: Add missing npy_import.h to common_deps
Without this, the build will not rerun due to changes in this file
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 7ff7bd254..a4429cee2 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -733,6 +733,7 @@ def configuration(parent_package='',top_path=None): join('src', 'common', 'npy_config.h'), join('src', 'common', 'npy_ctypes.h'), join('src', 'common', 'npy_extint128.h'), + join('src', 'common', 'npy_import.h'), join('src', 'common', 'npy_longdouble.h'), join('src', 'common', 'templ_common.h.src'), join('src', 'common', 'ucsnarrow.h'), |