Skip to content

Commit bee3240

Browse files
committed
Add git_all_tags function
1 parent 303eea2 commit bee3240

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setuptools_git_versioning.py

+4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ def get_branch_tags(): # type: () -> List[str]
5050
return []
5151

5252

53+
def get_tags(): # type: () -> List[str]
54+
return get_branch_tags
55+
56+
5357
def get_tag(): # type: () -> Optional[str]
5458
tags = get_branch_tags()
5559
if tags:

0 commit comments

Comments
 (0)