diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-11 19:30:44 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 19:30:44 -0600 |
commit | 7e1a322891f01a775ae257e3a37ea240eae27d22 (patch) | |
tree | 7b802ce028c929af89553f918d81ffe1b8acda92 /numpy/core/setup.py | |
parent | 0793c815fa551ed1b70c9d8fa56d3f877bc2f53c (diff) | |
parent | c6599554aa062b023b092b471519a914965b9039 (diff) | |
download | numpy-7e1a322891f01a775ae257e3a37ea240eae27d22.tar.gz |
Merge pull request #9020 from eric-wieser/reduce-warn
BUG: don't silence warnings in ufunc.reduce
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 0be0bd65a..4c3ec66fe 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -874,6 +874,7 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'loops.h.src'), join('src', 'umath', 'loops.c.src'), join('src', 'umath', 'ufunc_object.c'), + join('src', 'umath', 'extobj.c'), join('src', 'umath', 'scalarmath.c.src'), join('src', 'umath', 'ufunc_type_resolution.c'), join('src', 'umath', 'override.c'), |