From 84658e69c2b5f8767c56eaed5151b66a4c0b1e55 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Wed, 29 Dec 2021 22:47:28 +0100 Subject: [PATCH] Revert "BLD Respect the --skip-build flag in setup.py" (#15306) --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 002531fcc00..d91916e5894 100755 --- a/setup.py +++ b/setup.py @@ -488,8 +488,6 @@ def setup_package(): if "--force" in sys.argv: run_build = True sys.argv.remove('--force') - elif "--skip-build" in sys.argv: - run_build = False else: # Raise errors for unsupported commands, improve help output, etc. run_build = check_setuppy_command()