Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
gh-93692: setup.py now reports successful builds if the build succeeded
  • Loading branch information
erlend-aasland committed Jun 10, 2022
commit d9303c44305c72e3df4548a7fcea11f7e83b7ecd
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,9 +536,13 @@ def print_three_column(lst):
print("%-*s %-*s %-*s" % (longest, e, longest, f,
longest, g))

if self.missing:
if not self.failed:
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
print()
print("Python build finished successfully!")
print()

if self.missing:
print()
print("The necessary bits to build these optional modules were not "
"found:")
print_three_column(self.missing)
Expand Down