diff --git a/scripts/tag.py b/scripts/tag.py index 595add2..7b8dcf7 100755 --- a/scripts/tag.py +++ b/scripts/tag.py @@ -36,6 +36,7 @@ def commit(tag): subprocess.check_call(['git', 'clean', '-xdf']) print("Creating tag {}".format(tag)) subprocess.check_call(['git', 'commit', '--allow-empty', '-m', + '--author="Pandas Development Team "', 'RLS: {}'.format(tag[1:])]) subprocess.check_call(['git', 'tag', '-a', tag, '-m', 'Version {}'.format(tag[1:])])