Repository URL to install this package:
|
Version:
2.4.1rc1 ▾
|
__version_info__ = (2016, 6, 4, 'final', 0)
def get_version(version=__version_info__):
dev_st = {'alpha': 'a', 'beta': 'b', 'rc': 'c', 'final': ''}
assert len(version) == 5
assert version[3] in dev_st.keys()
n = 2 + (version[2] != 0)
version_str = '.'.join([str(v) for v in version[:n]])
if version[3] == 'final':
return version_str
if version[3:] == ('alpha', 0):
return '%s.dev%s' % (version_str, get_hg_chgset())
else:
return ''.join((version_str, dev_st[version[3]], str(version[4])))
def get_hg_chgset():
import subprocess
try:
# python 3
DEVNULL = subprocess.DEVNULL
except AttributeError:
import os
DEVNULL = open(os.devnull, 'wb')
try:
return subprocess.check_output(['hg', 'id', '-i'],
stderr=DEVNULL).strip()
except:
return '?'
__version__ = get_version()