From 5c6922311aed1f86194d9fd1353de3fb7fb9da51 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Tue, 7 Jan 2020 11:26:16 -0600 Subject: [PATCH] use pandas dev as the author --- scripts/tag.py | 1 + 1 file changed, 1 insertion(+) 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:])])