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:
parent
d4e5f37c07
commit
cd703c37da
1 changed files with 1 additions and 7 deletions
8
setup.py
8
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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue