From cfeda0bd34039dde62de0a4c37f74495f4b03610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20BRIOL?= Date: Fri, 12 Aug 2022 15:12:44 +0200 Subject: [PATCH] Windows detection doesn't work. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index be9cdec..ce344e7 100644 --- a/setup.py +++ b/setup.py @@ -251,7 +251,7 @@ def get_build_args(self, cfg: str) -> List[str]: * `cfg`: config, one of {"debug", "release"} """ build_args = ["--config", cfg] - is_windows = platform.system() == "windows" + is_windows = platform.system() == "Windows" if is_windows: build_args += ['--', '/m'] else: