2014-07-14 22:33:54 +02:00
|
|
|
VERSION = (2, 0, 0, 'alpha', 1) # During development it is the next release
|
2014-06-02 18:30:07 +02:00
|
|
|
RELEASE = False
|
2012-10-23 02:03:47 +02:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-12-01 13:39:29 +01:00
|
|
|
def get_version(version=None, release=None):
|
2012-10-23 02:03:47 +02:00
|
|
|
"""
|
2013-04-03 17:55:30 +02:00
|
|
|
Derives a PEP386-compliant version number from VERSION. Adds '-dev',
|
|
|
|
if it is not a release commit.
|
2012-10-23 02:03:47 +02:00
|
|
|
"""
|
2012-02-09 13:43:39 +01:00
|
|
|
if version is None:
|
|
|
|
version = VERSION
|
2012-12-01 13:39:29 +01:00
|
|
|
if release is None:
|
|
|
|
release = RELEASE
|
2012-02-09 13:43:39 +01:00
|
|
|
assert len(version) == 5
|
2012-11-23 11:31:30 +01:00
|
|
|
assert version[3] in ('alpha', 'beta', 'rc', 'final')
|
2012-02-09 13:43:39 +01:00
|
|
|
# Now build the two parts of the version number:
|
|
|
|
# main = X.Y[.Z]
|
2012-10-23 02:03:47 +02:00
|
|
|
# sub = {a|b|c}N for alpha, beta and rc releases
|
2012-11-23 11:31:30 +01:00
|
|
|
# Add '-dev', if it is not a release commit
|
2012-10-23 02:03:47 +02:00
|
|
|
main_parts = 2 if version[2] == 0 else 3
|
|
|
|
main = '.'.join(str(x) for x in version[:main_parts])
|
|
|
|
if version[3] != 'final':
|
2012-11-23 11:31:30 +01:00
|
|
|
mapping = {'alpha': 'a', 'beta': 'b', 'rc': 'c'}
|
|
|
|
sub = mapping[version[3]] + str(version[4])
|
2012-10-23 02:03:47 +02:00
|
|
|
else:
|
|
|
|
sub = ''
|
2012-12-01 13:39:29 +01:00
|
|
|
if not release:
|
2012-11-23 11:31:30 +01:00
|
|
|
sub += '-dev'
|
2012-02-09 13:43:39 +01:00
|
|
|
return main + sub
|
2012-11-23 11:31:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_git_commit_id():
|
|
|
|
"""
|
|
|
|
Catches the commit id of the git head.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
git_head = open('.git/HEAD', 'r').read().rstrip()
|
2012-11-28 18:02:33 +01:00
|
|
|
if git_head[:5] == 'ref: ':
|
2014-08-16 09:25:18 +02:00
|
|
|
# The file is a reference. We have to follow it to get the commit id
|
2012-11-23 11:31:30 +01:00
|
|
|
git_commit_id = open('.git/%s' % git_head[5:], 'r').read().rstrip()
|
|
|
|
else:
|
|
|
|
git_commit_id = git_head
|
2014-08-16 09:25:18 +02:00
|
|
|
return git_commit_id
|
2012-11-23 11:31:30 +01:00
|
|
|
except IOError:
|
2014-08-16 09:25:18 +02:00
|
|
|
return 'unknown'
|