summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-24 11:02:14 (GMT)
committerGitHub <noreply@github.com>2022-06-24 11:02:14 (GMT)
commite4d72d1863fa846f984c4e8f1ace937a30e11bf4 (patch)
tree2fadbc3ef9e73440613a6d8bdb56f874012190e1
parentfbf31454e9e6d97d0a86a418249fe83f246d7a93 (diff)
downloadcpython-e4d72d1863fa846f984c4e8f1ace937a30e11bf4.zip
cpython-e4d72d1863fa846f984c4e8f1ace937a30e11bf4.tar.gz
cpython-e4d72d1863fa846f984c4e8f1ace937a30e11bf4.tar.bz2
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@protonmail.com>
-rw-r--r--setup.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4c49734..bba344c 100644
--- a/setup.py
+++ b/setup.py
@@ -538,7 +538,6 @@ class PyBuildExt(build_ext):
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)