From e2e00cb057f41f8d06d6b39a45427e450f2d8b5c Mon Sep 17 00:00:00 2001 From: Matthew Brett Date: Mon, 11 Apr 2022 15:28:16 +0100 Subject: [PATCH] Specify cython_lapack dependency for matfuncs_expm Matfuncs_expm does not only depend on the __init__ file, but on cython_lapack etc. Specify in dependencies. --- scipy/linalg/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipy/linalg/meson.build b/scipy/linalg/meson.build index e61a596818fd..c98f765ea656 100644 --- a/scipy/linalg/meson.build +++ b/scipy/linalg/meson.build @@ -252,7 +252,7 @@ _matfuncs_expm_pyx = custom_target('_matfuncs_expm', ) py3.extension_module('_matfuncs_expm', - linalg_init_cython_gen.process(_matfuncs_expm_pyx), + linalg_cython_gen.process(_matfuncs_expm_pyx), c_args: cython_c_args, include_directories: inc_np, dependencies: py3_dep,