Skip to content

Commit

Permalink
Merge pull request #970 from benoit-pierre/tweak_setup_tag_weekly
Browse files Browse the repository at this point in the history
setup: tweak `tag_weekly` to create an annotated tag
  • Loading branch information
morinted committed Jun 7, 2018
2 parents 636373f + bfb04b2 commit ca16298
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 ca16298

Please sign in to comment.