diff options
author | mattip <matti.picus@gmail.com> | 2018-07-02 16:28:33 -0700 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-08-21 20:04:32 +0300 |
commit | f88d5768545df2d04179243ceed916af9ac8b47f (patch) | |
tree | 3432a5825f038530e9d0dc026074e54bae2508f8 /numpy/core/setup.py | |
parent | c49f779b73ef714b0065bf9904b1d7e9224cd1d7 (diff) | |
download | numpy-f88d5768545df2d04179243ceed916af9ac8b47f.tar.gz |
MAINT: move declararions into umathmodule.h
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 891148790..b306aa4e8 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -725,6 +725,7 @@ def configuration(parent_package='',top_path=None): join('src', 'common', 'templ_common.h.src'), join('src', 'common', 'ucsnarrow.h'), join('src', 'common', 'ufunc_override.h'), + join('src', 'common', 'umathmodule.h'), ] common_src = [ @@ -742,8 +743,8 @@ def configuration(parent_package='',top_path=None): # These files are also in MANIFEST.in so that they are always in # the source distribution independently of HAVE_CBLAS. common_src.extend([join('src', 'common', 'cblasfuncs.c'), - join('src', 'common', 'python_xerbla.c'), - ]) + join('src', 'common', 'python_xerbla.c'), + ]) if uses_accelerate_framework(blas_info): common_src.extend(get_sgemv_fix()) else: |