Skip to content

Commit

Permalink
Bump version to fix pip install on Python 3.6 (#1571)
Browse files Browse the repository at this point in the history
* Py3.8 Warning

* Add hotfix version number
  • Loading branch information
Eric Hennenfent authored Dec 6, 2019
1 parent b5938a0 commit b993558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manticore/utils/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit b993558

Please sign in to comment.