Skip to content

Commit

Permalink
Updating pythondata-cpu-ibex to 0.0.post2937
Browse files Browse the repository at this point in the history
Updated data to v0.0-2787-g5da1679f360b based on 5da1679 from https://github.com/lowRISC/ibex.
> commit 5da1679
> Author: Robert Schilling <rschilling@rivosinc.com>
> Date:   Thu Jan 9 20:34:42 2025 +0100
>
>     [ibex_tracer] Use static variables in always/final blocks
>
>     Signed-off-by: Robert Schilling <rschilling@rivosinc.com>
>

Updated using 0.0.post150 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
FlyGoat committed Jan 13, 2025
1 parent 2bccf45 commit f657a3a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# Always clone the full depth so git-describe works.
fetch-depth: 0
Expand Down Expand Up @@ -70,14 +70,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# Always clone the full depth so git-describe works.
fetch-depth: 0
submodules: true

- name: Set up Python 🐍 ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
35 changes: 16 additions & 19 deletions pythondata_cpu_ibex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,44 +4,41 @@
src = "https://github.com/lowRISC/ibex"

# Module version
version_str = "0.0.post2681"
version_tuple = (0, 0, 2681)
version_str = "0.0.post2937"
version_tuple = (0, 0, 2937)
try:
from packaging.version import Version as V
pversion = V("0.0.post2681")
pversion = V("0.0.post2937")
except ImportError:
pass

# Data version info
data_version_str = "0.0.post2539"
data_version_tuple = (0, 0, 2539)
data_version_str = "0.0.post2787"
data_version_tuple = (0, 0, 2787)
try:
from packaging.version import Version as V
pdata_version = V("0.0.post2539")
pdata_version = V("0.0.post2787")
except ImportError:
pass
data_git_hash = "2c15b96a353aeb42dbcaeadec4a92a8f4b54fe63"
data_git_describe = "v0.0-2539-g2c15b96a"
data_git_hash = "5da1679f360b00ae330aab33cc8d79d73dfabb98"
data_git_describe = "v0.0-2787-g5da1679f360b"
data_git_msg = """\
commit 2c15b96a353aeb42dbcaeadec4a92a8f4b54fe63
Author: Saad Khalid <saad.khalid@lowrisc.org>
Date: Thu Nov 3 14:28:59 2022 +0000
commit 5da1679f360b00ae330aab33cc8d79d73dfabb98
Author: Robert Schilling <rschilling@rivosinc.com>
Date: Thu Jan 9 20:34:42 2025 +0100
[dv] added functional coverpoints
[ibex_tracer] Use static variables in always/final blocks
Coverpoints for priv modes with interrupts and mstatus.MIE, and with exceptions.
Also, fixed a checker for scenarios when interrupt is taken from lower priv modes.
Signed-off-by: Saad Khalid <saad.khalid@lowrisc.org>
Signed-off-by: Robert Schilling <rschilling@rivosinc.com>
"""

# Tool version info
tool_version_str = "0.0.post142"
tool_version_tuple = (0, 0, 142)
tool_version_str = "0.0.post150"
tool_version_tuple = (0, 0, 150)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post142")
ptool_version = V("0.0.post150")
except ImportError:
pass

Expand Down

0 comments on commit f657a3a

Please sign in to comment.