# HG changeset patch # User anatoly techtonik # Date 1413802486 -10800 # Node ID a206ee74f129a33cca0377e9ab66350795c02532 # Parent 458f883b68dc0de32f92c1cd5ee3153436db505b evolve: add various version info to save time on troubleshooting diff --git a/hgext/evolve.py b/hgext/evolve.py --- a/hgext/evolve.py +++ b/hgext/evolve.py @@ -19,6 +19,7 @@ - improves some aspect of the early implementation in Mercurial core ''' +__version__ = '5.1.0' testedwith = '3.2' buglink = 'http://bz.selenic.com/' @@ -85,7 +86,7 @@ return oldmemfilectx(*args, **kwargs) else: raise util.Abort('Your Mercurial is too old for this version of Evolve\n' - 'requires version 3.2 or above') + 'requires version %s or above' % min(testedwith.split())) # This extension contains the following code diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -2,10 +2,21 @@ # Credit to Augie Fackler from distutils.core import setup +from os.path import dirname, join + +def get_version(relpath): + '''Read version info from a file without importing it''' + for line in open(join(dirname(__file__), relpath), 'rb'): + # Decode to a fail-safe string for PY3 + # (gives unicode object in PY2) + line = line.decode('utf8') + if '__version__' in line: + if "'" in line: + return line.split("'")[1] setup( name='hg-evolve', - version='5.0.0', + version=get_version('hgext/evolve.py'), author='Pierre-Yves David', maintainer='Pierre-Yves David', maintainer_email='pierre-yves.david@ens-lyon.org',