From b993558358824a9cfe049eed2c2252301155e976 Mon Sep 17 00:00:00 2001 From: Eric Hennenfent Date: Fri, 6 Dec 2019 10:28:07 -0800 Subject: [PATCH] Bump version to fix pip install on Python 3.6 (#1571) * Py3.8 Warning * Add hotfix version number --- manticore/utils/event.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manticore/utils/event.py b/manticore/utils/event.py index 384c74c59..43ae2397b 100644 --- a/manticore/utils/event.py +++ b/manticore/utils/event.py @@ -20,7 +20,7 @@ def __new__(cls, name, parents, d): bases = inspect.getmro(parents[0]) - if name is "Eventful": + if name == "Eventful": return eventful_sub subclasses = takewhile(lambda c: c is not Eventful, bases) diff --git a/setup.py b/setup.py index 834879747..d87ac349b 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def rtd_dependent_deps(): description="Manticore is a symbolic execution tool for analysis of binaries and smart contracts.", url="https://github.com/trailofbits/manticore", author="Trail of Bits", - version="0.3.2", + version="0.3.2.1", packages=find_packages(exclude=["tests", "tests.*"]), python_requires=">=3.6", install_requires=[