270bdeef71c12e99a0e71b173c344255591fe6bf
[sdc/sdc-distribution-client.git] /
1 # -*- coding: utf-8 -*-
2 # http://semver.org/
3 import sys
4
5 if sys.version_info >= (3, 0):
6     from unicodecsv.py3 import *
7 else:
8     from unicodecsv.py2 import *
9
10 VERSION = (0, 14, 1)
11 __version__ = ".".join(map(str, VERSION))