From 93a2535ae2116ff95bda07cf49f47505458c2243 Mon Sep 17 00:00:00 2001 From: Leon Foks Date: Mon, 14 Oct 2024 18:21:01 -0700 Subject: [PATCH] forgot to change back the library extension name from meson test --- python/gatdaem1d/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/gatdaem1d/__init__.py b/python/gatdaem1d/__init__.py index 58ee85e..15e548e 100644 --- a/python/gatdaem1d/__init__.py +++ b/python/gatdaem1d/__init__.py @@ -12,7 +12,7 @@ #Function to load the shared library def load_library(): files = os.listdir(os.path.dirname(os.path.realpath(__file__))) - libname = [file for file in files if 'gatdaem1d_ext' in file][0] + libname = [file for file in files if 'gatdaem1d' in file][0] libname = os.path.join(os.path.dirname(os.path.realpath(__file__)),libname) lib = ctypes.CDLL(libname) return lib;