diff --git a/setup.py b/setup.py index 3441ff27c..0d132b13d 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 += '+' + out.decode('utf-8').strip() except Exception: pass