at master 499 B view raw
1diff --git a/setup.py b/setup.py 2index 079cb01..c5e71b8 100644 3--- a/setup.py 4+++ b/setup.py 5@@ -6,7 +6,7 @@ with open("README.md", "r") as fh: 6 long_description = fh.read() 7 8 # determine the version, then write it out into the bridge.py file 9-version = subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip() 10+version = "@version@" 11 # check if this is a non-tag release and remark it as a dev release 12 if "-" in version: 13 ver, commits, hash = version.split("-")