From c07469eaf41108fe8967b5dfd47fced040d737cb Mon Sep 17 00:00:00 2001 From: Sebastian Berg Date: Mon, 21 Jun 2021 20:00:43 -0500 Subject: ENH: Add new hashtable to be used for ufunc dispatching --- numpy/core/setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'numpy/core/setup.py') diff --git a/numpy/core/setup.py b/numpy/core/setup.py index b03e9f990..8d2a86343 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -723,6 +723,7 @@ def configuration(parent_package='',top_path=None): join('src', 'common', 'npy_ctypes.h'), join('src', 'common', 'npy_extint128.h'), join('src', 'common', 'npy_import.h'), + join('src', 'common', 'npy_hashtable.h'), join('src', 'common', 'npy_longdouble.h'), join('src', 'common', 'templ_common.h.src'), join('src', 'common', 'ucsnarrow.h'), @@ -737,6 +738,7 @@ def configuration(parent_package='',top_path=None): join('src', 'common', 'array_assign.c'), join('src', 'common', 'mem_overlap.c'), join('src', 'common', 'npy_argparse.c'), + join('src', 'common', 'npy_hashtable.c'), join('src', 'common', 'npy_longdouble.c'), join('src', 'common', 'templ_common.h.src'), join('src', 'common', 'ucsnarrow.c'), -- cgit v1.2.1