pip freeze): pip3 freezeRun make test for Vyper master branch, report the following error:
File "/Users/vici/vyper-env/lib/python3.7/site-packages/vyper-0.1.0b1-py3.7.egg/vyper/parser/parser_utils.py", line 3, in
File "/Users/vici/vyper-env/lib/python3.7/site-packages/py_evm-0.2.0a18-py3.7.egg/evm/__init__.py", line 14, in
from evm.chains import ( # noqa: F401
File "/Users/vici/vyper-env/lib/python3.7/site-packages/py_evm-0.2.0a18-py3.7.egg/evm/chains/__init__.py", line 1, in
from .base import ( # noqa: F401
File "/Users/vici/vyper-env/lib/python3.7/site-packages/py_evm-0.2.0a18-py3.7.egg/evm/chains/base.py", line 630
(ancestor.hash, ancestor)
^
SyntaxError: Generator expression must be parenthesized
.../vyper-env/lib/python3.7/site-packages/py_evm-0.2.0a18-py3.7.egg/evm/chains/base.py
recent_ancestors = dict(
(ancestor.hash, ancestor)
for ancestor in self.get_ancestors(MAX_UNCLE_DEPTH + 1),
)
FIX: remove the comma in generator.

@vici0 I am in the process of removing py_evm as dependency so should indirectly solve the above as well ;)
@vici0 please try with the latest master. The py-evm dependencies have been removed.
Closing, please create a new issue if this still occurs.
Most helpful comment
@vici0 I am in the process of removing py_evm as dependency so should indirectly solve the above as well ;)