From 119dd263c7234dddc1379c192b63ccc6658de9d2 Mon Sep 17 00:00:00 2001 From: Ville Aikas Date: Wed, 1 Nov 2023 14:45:52 -0700 Subject: [PATCH] source->dep change. Signed-off-by: Ville Aikas --- pandas/_libs/meson.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandas/_libs/meson.build b/pandas/_libs/meson.build index 53f67c3eba94e..f37214ab55a03 100644 --- a/pandas/_libs/meson.build +++ b/pandas/_libs/meson.build @@ -61,12 +61,12 @@ subdir('tslibs') libs_sources = { # Dict of extension name -> dict of {sources, include_dirs, and deps} # numpy include dir is implicitly included - 'algos': {'sources': ['algos.pyx', _algos_common_helper, _algos_take_helper, _khash_primitive_helper]}, - 'arrays': {'sources': ['arrays.pyx', _khash_primitive_helper]}, + 'algos': {'sources': ['algos.pyx', _algos_common_helper, _algos_take_helper], 'deps': _khash_primitive_helper_dep}, + 'arrays': {'sources': ['arrays.pyx'], 'deps': _khash_primitive_helper_dep}, 'groupby': {'sources': ['groupby.pyx']}, 'hashing': {'sources': ['hashing.pyx']}, - 'hashtable': {'sources': ['hashtable.pyx', _khash_primitive_helper, _hashtable_class_helper, _hashtable_func_helper]}, - 'index': {'sources': ['index.pyx', _index_class_helper, _khash_primitive_helper]}, + 'hashtable': {'sources': ['hashtable.pyx', _hashtable_class_helper, _hashtable_func_helper], 'deps': _khash_primitive_helper_dep}, + 'index': {'sources': ['index.pyx', _index_class_helper], 'deps': _khash_primitive_helper_dep}, 'indexing': {'sources': ['indexing.pyx']}, 'internals': {'sources': ['internals.pyx']}, 'interval': {'sources': ['interval.pyx', _intervaltree_helper],