summaryrefslogtreecommitdiff
path: root/version.py
blob: 88072ec7f9d205a93e66ec9a02e430f412ef0940 (plain)
1
2
3
4
5
6
7
8
# 2.1.master.3
VERSION = (2, 1, 'master', 3)


def get_version():
    return u'.'.join((unicode(num) for num in VERSION))

__version__ = get_version()