From 97a502f52c792ac3f5de698a12f4b1a9df34f5f9 Mon Sep 17 00:00:00 2001 From: Christian Rohlfing <rohlfing@ient.rwth-aachen.de> Date: Thu, 24 Sep 2020 16:02:53 +0200 Subject: [PATCH] Bugfix setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7528165..71f277f 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def get_version(): git_describe = f.readline() f.close() - version = None + version = git_describe split_describe = git_describe.split('-') if (len(split_describe) > 1): raise Exception("I do not want to build this package since you did not tag your current state of work.") -- GitLab