Skip to content

Commit

Permalink
allow uppercase model names (#424)
Browse files Browse the repository at this point in the history
On top of #420, this adds support for uppercase model names.
  • Loading branch information
dberenbaum authored Oct 4, 2023
1 parent 5591cca commit d4d53e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gto/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def tag_to_name(value):


dirname = "[a-zA-Z0-9-_./]+" # improve?
name = r"[a-z0-9]([a-z0-9-/_]*[a-z0-9])?"
name = r"[a-zA-Z0-9]([a-zA-Z0-9-/_]*[a-zA-Z0-9])?"
semver = r"(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?"
counter = "?P<counter>[0-9]+"
name_re = re.compile(f"^{name}$")
Expand Down
6 changes: 4 additions & 2 deletions tests/test_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"model-prod-v1",
"model_prod_v1",
"dvclive/model",
"model_A",
"DVCLive/Model",
],
)
def test_check_name_is_valid(name):
Expand All @@ -40,8 +42,6 @@ def test_check_name_is_valid(name):
"model@1",
"model#1",
"@namespace/model",
"DVCLive/Model",
"model A",
],
)
def test_check_name_is_invalid(name):
Expand All @@ -54,6 +54,7 @@ def test_check_name_is_invalid(name):
"model",
"dvclive:model",
"some/folder:some/model",
"some/Other_Folder:some/model",
],
)
def test_check_fullname_is_valid(name):
Expand All @@ -67,6 +68,7 @@ def test_check_fullname_is_valid(name):
"dvclive=model",
"some/folder=some/model",
"Some/folder/A=model",
"Some/folder/A=Model",
],
)
def test_check_fullname_in_tag_is_valid(name):
Expand Down

0 comments on commit d4d53e0

Please sign in to comment.