[Python-checkins] gh-93692: remove "build finished successfully" message from setup.py (GH-93693)

miss-islington webhook-mailer at python.org
Fri Jun 24 07:02:24 EDT 2022


https://github.com/python/cpython/commit/e4d72d1863fa846f984c4e8f1ace937a30e11bf4
commit: e4d72d1863fa846f984c4e8f1ace937a30e11bf4
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-06-24T04:02:14-07:00
summary:

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 <erlend.aasland at protonmail.com>

files:
M setup.py

diff --git a/setup.py b/setup.py
index 4c497346e8d7e..bba344c3af07c 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)



More information about the Python-checkins mailing list