Skip to content
Snippets Groups Projects
Commit b19d6ab9 authored by Glenn Johnson's avatar Glenn Johnson
Browse files

Check for non-numeric bits in the stem.

parent 32779ab1
Branches
Tags
No related merge requests found
......@@ -207,7 +207,7 @@ def parse_version_offset(path):
(r'-((\d)+-\d)', stem),
# e.g. foobar_1.2-3
(r'_((\d+\.)+\d+(-\d+)?)', stem),
(r'_((\d+\.)+\d+(-\d+)?[a-z]?)', stem),
# e.g. foobar-4.5.1
(r'-((\d+\.)*\d+)$', stem),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment