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 7bf9fb4 commit a80fb84Copy full SHA for a80fb84
setup.py
@@ -7,7 +7,7 @@ def get_version():
7
tag = check_output(
8
["git", "describe", "--tags", "--abbrev=0", "--match=[0-9]*"]
9
)
10
- return tag.strip("\n")
+ return tag.decode('utf-8').strip("\n")
11
except Exception:
12
# if somehow you get the repo not from git,
13
# hardcode default major version
0 commit comments