jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/993215?usp=email )
Change subject: [dest] remove final print statement ......................................................................
[dest] remove final print statement
with new build system and make_dist script the final print statement is shown during build of the Pywikibot package but no longer at the end. Remove it because the checking result is enough information.
Change-Id: I0e86a2e70ae2cb65896be56117c17bcc39db9b22 --- M setup.py 1 file changed, 13 insertions(+), 4 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/setup.py b/setup.py index fd8bd4b..d217e9b 100755 --- a/setup.py +++ b/setup.py @@ -350,10 +350,6 @@ ], )
- # Finally show distribution version before uploading - if 'sdist' in sys.argv: - print(f'\nDistribution package created for version {version}') -
if __name__ == '__main__': # pragma: no cover main()
pywikibot-commits@lists.wikimedia.org