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.
This commit is contained in:
Charles Leifer 2022-12-13 16:09:45 -06:00
parent d4e5f37c07
commit cd703c37da

View file

@ -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())