Skip to content

Commit 18f7fdd

Browse files
committed
Remove GPG signing from version bump script
1 parent 1a6cd42 commit 18f7fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bump_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def create_tag(self) -> None:
166166
167167
{''.join(changes)}
168168
"""
169-
cmdline = ["git", "tag", "-a", "-s", "-m", msg, tag_name]
169+
cmdline = ["git", "tag", "-a", "-m", msg, tag_name]
170170
sp.check_call(cmdline)
171171

172172
def _parse_version_from_file(self, fp: Path) -> Version:

0 commit comments

Comments
 (0)