From ed3d78f4c0b5cd92cf52af4c3f9480dc1b4104aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20BRIOL?= Date: Fri, 22 Nov 2024 10:59:31 +0100 Subject: [PATCH] Add missing comma in CMake arguments for Python bindings --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb92e20..faa2d56 100755 --- a/setup.py +++ b/setup.py @@ -185,7 +185,7 @@ def cmake_arguments(self, cfg: str, extdir: str) -> list[str]: '-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir, '-DPython3_EXECUTABLE=' + sys.executable, '-DFES_BUILD_PYTHON_BINDINGS=ON', - *self.set_cmake_user_options() + *self.set_cmake_user_options(), ] return cmake_args