From f73385c79901e5fb6c41a9326fdf9a94fd8928c0 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Thu, 7 Nov 2024 10:32:38 +0100 Subject: [PATCH] Try to fix link error on Windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3081efff..d8de3507 100644 --- a/setup.py +++ b/setup.py @@ -246,7 +246,7 @@ def make_liblincs_extension(): include_dirs += [os.path.join(lincs_dependencies, "include")] library_dirs += [os.path.join(lincs_dependencies, "lib")] libraries += [ - "ortools", + "ortools_full", f"python{sys.version_info.major}{sys.version_info.minor}", ] elif sys.platform == "darwin":