From fb7b3c8b2600093028ec424f73520c280af81e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me?= <124148386+cathales@users.noreply.github.com> Date: Thu, 5 Oct 2023 22:08:00 +0200 Subject: [PATCH] fix dv for recent python versions (#1501) With newest Python version, cva6.py cannot find dv.scripts module. This modifications adds an empty `__init__.py` in dv so that it can be found by Python 3.9. --- verif/regress/install-riscv-dv.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/verif/regress/install-riscv-dv.sh b/verif/regress/install-riscv-dv.sh index 76cdd4257a..6117b4eca6 100755 --- a/verif/regress/install-riscv-dv.sh +++ b/verif/regress/install-riscv-dv.sh @@ -43,3 +43,4 @@ if ! [ -d verif/sim/dv ]; then cd verif/sim/dv; pip3 install -r requirements.txt; cd - fi +touch verif/sim/dv/__init__.py