Mercurial > hg > hybrid-music-recommender-using-content-based-and-social-information
view Code/python_oauth2-master/oauth2/_version.py @ 41:1de207a22c1a
sys library not used
author | Paulo Chiliguano <p.e.chiilguano@se14.qmul.ac.uk> |
---|---|
date | Sun, 20 Nov 2016 23:47:31 -0500 |
parents | e68dbee1f6db |
children |
line wrap: on
line source
# This is the version of this source code. manual_verstr = "1.5.1" auto_build_num = "212" verstr = manual_verstr + "." + auto_build_num try: from pyutil.version_class import Version as pyutil_Version __version__ = pyutil_Version(verstr) except (ImportError, ValueError): # Maybe there is no pyutil installed. from distutils.version import LooseVersion as distutils_Version __version__ = distutils_Version(verstr)