Skip to content

Commit

Permalink
fix: drop vega prefix requirement from tag check (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdummett authored Aug 30, 2024
1 parent 5b81bfe commit 3f85e31
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/check_tagged_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ def check_versions():
).json()
tagged_vega_versions = set()
for tag in tags:
if tag["name"].startswith("vega-"):
tagged_vega_versions.add(tag["name"][5:])
tagged_vega_versions.add(tag["name"])

if versions_to_check.difference(tagged_vega_versions):
raise Exception(
Expand Down

0 comments on commit 3f85e31

Please sign in to comment.