Browse Source

Prefix sha to fix leading zeros being stripped

/dist.py:352: UserWarning: Normalizing '1.0.0a1402+0965847' to '1.0.0a1402+965847'
pull/933/head
khazhyk 7 years ago
committed by Rapptz
parent
commit
54ea52c86f
  1. 2
      setup.py

2
setup.py

@ -32,7 +32,7 @@ if version.endswith(('a', 'b', 'rc')):
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
if out:
version += '+' + out.decode('utf-8').strip()
version += '+g' + out.decode('utf-8').strip()
except Exception:
pass

Loading…
Cancel
Save