We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec73209 commit 25edf54Copy full SHA for 25edf54
setup.py
@@ -88,7 +88,7 @@ def git_describe_to_python_version(version):
88
# get version from git describe
89
proc = subprocess.Popen(['git', 'describe', '--tags'],
90
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
91
- stdout = proc.communicate()[0].rstrip()
+ stdout = proc.communicate()[0].strip()
92
if sys.version_info[0] > 2:
93
stdout = stdout.decode('ascii')
94
0 commit comments