Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail_gardentronic / wagtail / utils / l18n / version.py
Size: Mime:
__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()