From 7e532d90c489e224968d62a96659e6940878efe6 Mon Sep 17 00:00:00 2001 From: Ville Aikas Date: Thu, 2 Nov 2023 11:48:45 -0700 Subject: [PATCH] try without arrays. Signed-off-by: Ville Aikas --- pandas/_libs/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/_libs/meson.build b/pandas/_libs/meson.build index f37214ab55a030..8d10bf01a603de 100644 --- a/pandas/_libs/meson.build +++ b/pandas/_libs/meson.build @@ -62,7 +62,8 @@ 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], 'deps': _khash_primitive_helper_dep}, - 'arrays': {'sources': ['arrays.pyx'], 'deps': _khash_primitive_helper_dep}, + #'arrays': {'sources': ['arrays.pyx'], 'deps': _khash_primitive_helper_dep}, + 'arrays': {'sources': ['arrays.pyx']}, 'groupby': {'sources': ['groupby.pyx']}, 'hashing': {'sources': ['hashing.pyx']}, 'hashtable': {'sources': ['hashtable.pyx', _hashtable_class_helper, _hashtable_func_helper], 'deps': _khash_primitive_helper_dep},