Plan for lack of version

This commit is contained in:
2019-11-22 16:10:01 -05:00
parent b81338a849
commit 116961f1f7
2 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,7 @@ except ImportError:
DEVNULL = open(os.devnull, 'wb')
def get_tag_version():
version = "develop"
version = "0.0.0"
tagged_versions = subprocess.Popen(['git','tag','-l','[0-9]*.[0-9]*.[0-9]*'],
stdout=subprocess.PIPE, stderr=DEVNULL, cwd=".").stdout.read().decode('utf-8').rstrip().split('\n')