From 6523c0b67d27201ca8fbad7cf7bc9ee58cfddc9c Mon Sep 17 00:00:00 2001 From: Kelvin Jayanoris Date: Sat, 18 Jan 2020 12:07:26 +0300 Subject: [PATCH] Include v in tag name --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9f5c8d1..1fa2bee 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ os.system("twine upload dist/* --skip-existing") print("You probably want to also tag the version now:") print( - f" git tag -a {vega_admin.__version__} -m 'version {vega_admin.__version__}'" + f" git tag -a v{vega_admin.__version__} -m 'version {vega_admin.__version__}'" ) print(" git push --tags") sys.exit()