|
|
@@ -196,7 +196,7 @@ def get_version():
|
|
|
"""
|
|
|
# Use git to look for a tag
|
|
|
try:
|
|
|
- tag = subprocess.check_output(["git", "describe", "--tags", "--exact-match"]).strip().decode('utf-8')
|
|
|
+ tag = subprocess.check_output(["git", "describe", "--exact-match"]).strip().decode('utf-8')
|
|
|
is_stable = re.match(r"v[0-9\.]+$", tag) is not None
|
|
|
return (tag, "tag", is_stable)
|
|
|
except subprocess.CalledProcessError:
|