Skip to content

Commit

Permalink
Fix version parsing for GA build string
Browse files Browse the repository at this point in the history
  • Loading branch information
tl-sl committed Nov 4, 2024
1 parent 4cbf6e9 commit 1b4311e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion universal_silabs_flasher/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class VersionComponent:

@functools.total_ordering
class Version:
_SEPARATORS = {".", "-", "/", "_", " build "}
_SEPARATORS = {".", "-", "/", "_", " build ", " GA build "}
_SEPARATORS_REGEX = re.compile(
"(" + "|".join(re.escape(s) for s in _SEPARATORS) + ")"
)
Expand Down

0 comments on commit 1b4311e

Please sign in to comment.