Browse Source

Show sha1 for development versions.

pull/849/merge
khazhyk 8 years ago
committed by Rapptz
parent
commit
c3a727ac7e
  1. 7
      setup.py

7
setup.py

@ -27,7 +27,12 @@ if version.endswith(('a', 'b', 'rc')):
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
if out:
version = version + out.decode('utf-8').strip()
version += out.decode('utf-8').strip()
p = subprocess.Popen(['git', 'rev-parse', '--short', 'HEAD'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
if out:
version += '-' + out.decode('utf-8').strip()
except Exception:
pass

Loading…
Cancel
Save