Move to using a PEP 440 compliant version number

This commit is contained in:
Raoul Snyman 2018-08-21 21:05:22 -07:00
parent f833150003
commit a6f8909d72
1 changed files with 3 additions and 2 deletions

View File

@ -99,10 +99,11 @@ try:
if tree_revision == tag_revision:
version_string = tag_version.decode('utf-8')
else:
version_string = '%s-bzr%s' % (tag_version.decode('utf-8'), tree_revision.decode('utf-8'))
version_string = '{version}-dev{revision}'.format(version=tag_version.decode('utf-8'),
revision=tree_revision.decode('utf-8'))
ver_file = open(VERSION_FILE, 'w')
ver_file.write(version_string)
except:
except Exception:
ver_file = open(VERSION_FILE, 'r')
version_string = ver_file.read().strip()
finally: