From cd703c37da7319ff2f52b066f1ec9e113361d415 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Tue, 13 Dec 2022 16:09:45 -0600 Subject: [PATCH] Remove exception handler that swallows errors. Now that pypa/pip has decided to add more smoke and mirrors, we can't swallow this error any more. Many thanks to SnoopJ for the report. --- setup.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 02a07a6..2625832 100644 --- a/setup.py +++ b/setup.py @@ -179,11 +179,5 @@ def get_setup_args(): ) -def main(): - try: - setuptools.setup(**get_setup_args()) - except BaseException as ex: - log.info(str(ex)) - if __name__ == "__main__": - main() + setuptools.setup(**get_setup_args())