From d86468c830cd19e1f510288627ed4e18016844b1 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Wed, 19 Jun 2019 20:58:54 +0200 Subject: [PATCH] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 58931527..d76f546e 100755 --- a/setup.py +++ b/setup.py @@ -94,9 +94,9 @@ class VerifyVersionCommand(install): """""" tag = os.getenv("CIRCLE_TAG") - if tag != VERSION: + if tag != about["__version__"]: info = "Git tag: {0} does not match the version of this app: {1}".format( - tag, VERSION + tag, about["__version__"] ) sys.exit(info)