aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/libpathod/version.py
blob: b99ae40b52ae8b99f167fc01d71f588800eb9246 (plain)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import (absolute_import, print_function, division)

IVERSION = (0, 17)
VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "pathod"
NAMEVERSION = NAME + " " + VERSION

NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])