Ignore stderr when doing the git revision check
(and use the older --git-dir instead of -C)
This commit is contained in:
parent
eb79322945
commit
992a460cf6
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -29,8 +29,9 @@ git_dir = os.path.join(current_dir, '.git')
|
|||
if os.path.exists(git_dir):
|
||||
try:
|
||||
import subprocess
|
||||
result = subprocess.Popen(['git', '-C', git_dir, 'describe'],
|
||||
result = subprocess.Popen(['git', '--git-dir', git_dir, 'describe'],
|
||||
stdout=subprocess.PIPE)
|
||||
stderr=subprocess.DEVNULL)
|
||||
result.wait()
|
||||
data = result.stdout.read().decode('utf-8', errors='ignore')
|
||||
version = '.dev' + data.split('-')[1]
|
||||
|
|
Loading…
Reference in a new issue