From 440230e4956fecc19f8c2e5479b7cb14434c668f Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Mon, 13 Oct 2014 18:25:57 +0200 Subject: [PATCH] setup's get_version fix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a194ba1..eddf260 100755 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def get_version(): assert version is not None if os.path.exists('.git'): import subprocess - p = subprocess.Popen(['git','describe','--long','--dirty','--match=v*'], + p = subprocess.Popen(['git','describe','--dirty','--match=v*'], stdout=subprocess.PIPE) result = p.communicate()[0] assert p.returncode == 0, 'git returned non-zero'