From dde9b2b05483fe6bafcfaa6cc2d80ded5babd046 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Thu, 20 Feb 2020 17:56:24 +0100 Subject: [PATCH] [release] Fix version check regular expressions One was not properly escaping the . and the other one was neither escaping the . nor handling more than one digit numbers. --- bob/devtools/release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/devtools/release.py b/bob/devtools/release.py index 707c144c..9682ca96 100644 --- a/bob/devtools/release.py +++ b/bob/devtools/release.py @@ -158,7 +158,7 @@ def get_parsed_tag(gitpkg, tag): The latest tag is either patch, minor, major, or none """ - m = re.search(r"(v\d+.\d+.\d+)", tag) + m = re.search(r"(v\d+\.\d+\.\d+)", tag) if m: return m.group(0) # tag = Version(tag) @@ -190,7 +190,7 @@ def get_parsed_tag(gitpkg, tag): # check that it has expected format #.#.# # latest_tag_name = Version(latest_tag_name) - m = re.match(r"(\d.\d.\d)", latest_tag_name) + m = re.match(r"(\d+\.\d+\.\d+)", latest_tag_name) if not m: raise ValueError( "The latest tag name {0} in package {1} has " -- GitLab