Skip to content

Commit

Permalink
setup: tweak tag_weekly to create an annotated tag
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre committed Jun 7, 2018
1 parent ace4050 commit bfb04b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ def run(self):
sys.exit(1)
weekly_version = 'weekly-v%s' % version
log.info('tagging as %s', weekly_version)
subprocess.check_call('git tag -f'.split() + [weekly_version])
subprocess.check_call('git tag -f -m'.split()
+ [weekly_version, weekly_version])

cmdclass['tag_weekly'] = TagWeekly

Expand Down

0 comments on commit bfb04b2

Please sign in to comment.