1 # This is the version of this source code.
11 verstr = manual_verstr + "." + auto_build_num
13 from pyutil.version_class import Version as pyutil_Version
14 __version__ = pyutil_Version(verstr)
15 except (ImportError, ValueError):
16 # Maybe there is no pyutil installed.
17 from distutils.version import LooseVersion as distutils_Version
18 __version__ = distutils_Version(verstr)