p@21: # This is the version of this source code. p@21: p@21: manual_verstr = "1.5.1" p@21: p@21: p@21: p@21: auto_build_num = "212" p@21: p@21: p@21: p@21: verstr = manual_verstr + "." + auto_build_num p@21: try: p@21: from pyutil.version_class import Version as pyutil_Version p@21: __version__ = pyutil_Version(verstr) p@21: except (ImportError, ValueError): p@21: # Maybe there is no pyutil installed. p@21: from distutils.version import LooseVersion as distutils_Version p@21: __version__ = distutils_Version(verstr)