From 2b6392eeeb8ef5225ace15e8a1553fa87409272f Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Wed, 29 Dec 2021 22:47:13 +0100 Subject: [PATCH] Revert "BLD Respect the --skip-build flag in setup.py" --- 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()