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
File "$HOME/.venv/bin/riscof", line 5, in<module>
from riscof.cli import cli
File "$HOME/.venv/lib/python3.12/site-packages/riscof/cli.py", line 18, in<module>
import riscof.framework.main as framework
File "$HOME/.venv/lib/python3.12/site-packages/riscof/framework/main.py", line 11, in<module>
from riscv_isac.isac import preprocessing
ImportError: cannot import name 'preprocessing' from 'riscv_isac.isac' ($HOME/.venv/lib/python3.12/site-packages/riscv_isac/isac.py)
On debugging the problem, I found out that the recent commit dddbc52 added import statements from isac.py of the dev branch. But the riscv_isac dependency is not updated in requirements.txt. Reverting to commit d38859f fixes the problem.
Cloned the
riscofframework via the command which went smoothly:However, running
riscofvia the command:I am greeted with the following error:
On debugging the problem, I found out that the recent commit
dddbc52added import statements fromisac.pyof thedevbranch. But theriscv_isacdependency is not updated inrequirements.txt. Reverting to commitd38859ffixes the problem.