Mercurial > hg > hybrid-music-recommender-using-content-based-and-social-information
diff Code/python_oauth2-master/oauth2/_version.py @ 21:e68dbee1f6db
Modified code
New datasets
Updated report
author | Paulo Chiliguano <p.e.chiilguano@se14.qmul.ac.uk> |
---|---|
date | Tue, 11 Aug 2015 10:50:36 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Code/python_oauth2-master/oauth2/_version.py Tue Aug 11 10:50:36 2015 +0100 @@ -0,0 +1,18 @@ +# 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)