Skip to content

Commit 1b4311e

Browse files
committed
Fix version parsing for GA build string
1 parent 4cbf6e9 commit 1b4311e

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
@@ -176,7 +176,7 @@ class VersionComponent:
176176

177177
@functools.total_ordering
178178
class Version:
179-
_SEPARATORS = {".", "-", "/", "_", " build "}
179+
_SEPARATORS = {".", "-", "/", "_", " build ", " GA build "}
180180
_SEPARATORS_REGEX = re.compile(
181181
"(" + "|".join(re.escape(s) for s in _SEPARATORS) + ")"
182182
)

0 commit comments

Comments
 (0)