From 21cbd1cb9fb8ab032bda0063e460dd5991769eed Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Fri, 13 Feb 2015 10:55:56 -0800 Subject: [PATCH] Update setup.py --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 24ab5ae..0de70e8 100755 --- a/setup.py +++ b/setup.py @@ -16,9 +16,8 @@ history = open('HISTORY.rst').read().replace('.. :changelog:', '') if sys.argv[-1] == 'publish': os.system('python setup.py sdist bdist_wheel upload') - print("You probably want to also tag the version now:") - print(" git tag -a %s -m 'version %s'" % (__version__, __version__)) - print(" git push --tags") + os.system("git tag -a %s -m 'version %s'" % (__version__, __version__)) + os.system("git push --tags") sys.exit() setup( -- 2.30.2