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


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

__version__ = get_version()