I have a Python script which runs perfectly with CPython (under virtualenv), unfortunately throws ModuleNotFoundError error when I run it with PyPy3 (under virtualenv).
My package is parser
and I import Analyze
with from parser.Analyze import Analyze
. There is parser
directory under the same directory with my script. And parser directory has __init__.py
file in it too.
Should I do something special for PyPy?