diff --git a/setup.py b/setup.py index 0d132b13d..0b4f1601d 100644 --- a/setup.py +++ b/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