Skip to content

Commit 4e23727

Browse files
committed
Fix version parsing for GA build string
1 parent 0854c9d commit 4e23727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

universal_silabs_flasher/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class VersionComponent:
181181

182182
@functools.total_ordering
183183
class Version:
184-
_SEPARATORS = {".", "-", "/", "_", " build "}
184+
_SEPARATORS = {".", "-", "/", "_", " build ", " GA build "}
185185
_SEPARATORS_REGEX = re.compile(
186186
"(" + "|".join(re.escape(s) for s in _SEPARATORS) + ")"
187187
)

0 commit comments

Comments
 (0)