Skip to content

Commit

Permalink
Set __version__ in riscof_kriscv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott-Guest committed Jun 14, 2024
1 parent 1ac7925 commit 31ca290
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tests/integration/riscof/kriscv/riscof_kriscv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import logging
import os
from importlib.metadata import version
from typing import TYPE_CHECKING

from riscof.pluginTemplate import pluginTemplate # type: ignore
Expand All @@ -14,7 +15,7 @@

class kriscv(pluginTemplate): # noqa N801
__model__ = 'kriscv'
__version__ = 'XXX'
__version__ = version('kriscv')

def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)
Expand Down

0 comments on commit 31ca290

Please sign in to comment.