From 7ad254e07af2cdabad6ab31d9af78cbd3cd754fa Mon Sep 17 00:00:00 2001 From: Fabian Sauter Date: Wed, 27 Jul 2022 12:05:47 +0200 Subject: [PATCH] Removed "--paralle 1" from building python again Signed-off-by: Fabian Sauter --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e7c634f7b..b94748007 100644 --- a/setup.py +++ b/setup.py @@ -51,8 +51,7 @@ class CMakeBuild(build_ext): ] cfg = 'Debug' if self.debug else 'Release' - build_args = ['--config', cfg, - '--parallel', '1'] + build_args = ['--config', cfg] env = os.environ.copy() oldCxxFlags = env.get('CXXFLAGS', '')