From dcc80ea16a2482b7d0c9262e38b642bfcae23bf8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 25 Jan 2015 14:18:59 +0530 Subject: [PATCH] Sign tags using my personal key --- setup/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/publish.py b/setup/publish.py index a4466bf3a2..f38005784d 100644 --- a/setup/publish.py +++ b/setup/publish.py @@ -228,5 +228,5 @@ class TagRelease(Command): def run(self, opts): self.info('Tagging release') - subprocess.check_call('git tag -a v{0} -m "version-{0}"'.format(__version__).split()) + subprocess.check_call('git tag -s v{0} -m "version-{0}"'.format(__version__).split()) subprocess.check_call('git push origin v{0}'.format(__version__).split())