Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_git_version_hash():
Thanks to https://gist.github.com/nloadholtes/07a1716a89b53119021592a1d2b56db8
"""
try:
p = subprocess.Popen(["git", "describe", "--tags", "--dirty", "--always"], stdout=subprocess.PIPE)
p = subprocess.Popen(["git", "describe", "--tags", "--exclude=TMC-benchmark-v0", "--dirty", "--always"], stdout=subprocess.PIPE)
except OSError:
return VERSION + "+unknown"
version = p.communicate()[0]
Expand Down
Loading