diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-05-15 11:12:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-15 11:12:18 -0700 |
commit | 75ea05fc0af60c685e6c071dae1f04c489a3ce93 (patch) | |
tree | 275abbee3db9582f8bc5df8c970520efc51ecbae /numpy/core/setup.py | |
parent | 8970dc8e588776bbae45953b2809883c4b6f8ed0 (diff) | |
parent | 31f0bb1dc7611e5401a52103623d15ea4b3dd00f (diff) | |
download | numpy-75ea05fc0af60c685e6c071dae1f04c489a3ce93.tar.gz |
Merge pull request #12519 from eric-wieser/clip-ufunc
ENH/DEP: Use a ufunc under the hood for ndarray.clip
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 81d140d5e..62147d22b 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -906,6 +906,8 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'loops.c.src'), join('src', 'umath', 'matmul.h.src'), join('src', 'umath', 'matmul.c.src'), + join('src', 'umath', 'clip.h.src'), + join('src', 'umath', 'clip.c.src'), join('src', 'umath', 'ufunc_object.c'), join('src', 'umath', 'extobj.c'), join('src', 'umath', 'cpuid.c'), |