From 7b7a5205a500e302c788a70dddfce5bacc52d5e9 Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Fri, 24 Jun 2022 12:36:59 +0200 Subject: [PATCH] gh-93692: remove "build finished successfully" message from setup.py (GH-93693) The message was only emitted when the build succeeded _and_ there were missing modules. (cherry picked from commit ab077d1e17032f84514292ae3fb8dee9bcfd2ce9) Co-authored-by: Erlend Egeberg Aasland --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 4c497346e8d7e2..bba344c3af07ca 100644 --- a/setup.py +++ b/setup.py @@ -538,7 +538,6 @@ def print_three_column(lst): if self.missing: print() - print("Python build finished successfully!") print("The necessary bits to build these optional modules were not " "found:") print_three_column(self.missing)