Merge pull request #1087 from ConsenSys/develop

Update __version__.py
pull/1113/head v0.21.2
Bernhard Mueller 6 years ago committed by GitHub
commit 4cab451a39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mythril/__version__.py
  2. 4
      setup.py

@ -4,4 +4,4 @@ This file is suitable for sourcing inside POSIX shell, e.g. bash as well
as for importing into Python.
"""
__version__ = "v0.21.0"
__version__ = "v0.21.2"

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

Loading…
Cancel
Save