Skip to content

Commit ca8a732

Browse files
author
Jon Wayne Parrott
authored
Allow underscores for release tags (googleapis#4976)
1 parent cd9b89e commit ca8a732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_utils/scripts/circleci/get_tagged_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
TAG_RE = re.compile(r"""
2727
^
2828
(?P<pkg>
29-
(([a-z]+)-)*) # pkg-name-with-hyphens- (empty allowed)
29+
(([a-z]+)[_-])*) # pkg-name-with-hyphens-or-underscores (empty allowed)
3030
([0-9]+)\.([0-9]+)\.([0-9]+) # Version x.y.z (x, y, z all ints)
3131
$
3232
""", re.VERBOSE)

0 commit comments

Comments
 (0)