|
|
|
@ -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) |
|
|
|
|
|
|
|
|
|