You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after a 'git pull' (commit c7bcae2) I got the following error when running the 'run.py' script.
python run.py --compile
Traceback (most recent call last):
File "run.py", line 3, in <module>
from vunit import VUnit
File "C:\Python34\lib\site-packages\vunit\__init__.py", line 11, in <module>
from vunit.ui import VUnit
File "C:\Python34\lib\site-packages\vunit\ui.py", line 28, in <module>
from vunit.project import Project, file_type_of
File "C:\Python34\lib\site-packages\vunit\project.py", line 22, in <module>
from vunit.parsing.verilog.parser import VerilogParser
ImportError: No module named 'vunit.parsing'
It did not update for a few days/weeks. So I don't know when this happened.
Grepping in the Python installation path for VerilogParser is giving me:
Removing the vunit from the Python installation path (c:\Python34\Lib\site-packages) and setting the PYTHONPATH to the git clone directory did the trick. So: yes, it is the setup.py script.
Yes I was immediately convinced it was the setup.py file. Neither me nor Lars really use the setup.py file and we perform quite exhaustive testing so such an error could not come from anywhere else. We should do some testing also with the setup.py file when adding new modules in the future.
after a 'git pull' (commit c7bcae2) I got the following error when running the 'run.py' script.
It did not update for a few days/weeks. So I don't know when this happened.
Grepping in the Python installation path for VerilogParser is giving me:
My guess is something is missing the the config.py script. Or I did something stupid....
The text was updated successfully, but these errors were encountered: