Skip to content

Commit

Permalink
Updated using 0.0.post140 from https://github.com/litex-hub/litex-dat…
Browse files Browse the repository at this point in the history
  • Loading branch information
timvideos-robot committed May 26, 2022
1 parent 4e01c46 commit 4cdadad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pythondata_cpu_vexriscv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/SpinalHDL/VexRISCV.git"

# Module version
version_str = "1.0.1.post403"
version_tuple = (1, 0, 1, 403)
version_str = "1.0.1.post405"
version_tuple = (1, 0, 1, 405)
try:
from packaging.version import Version as V
pversion = V("1.0.1.post403")
pversion = V("1.0.1.post405")
except ImportError:
pass

Expand All @@ -27,11 +27,11 @@
"""

# Tool version info
tool_version_str = "0.0.post138"
tool_version_tuple = (0, 0, 138)
tool_version_str = "0.0.post140"
tool_version_tuple = (0, 0, 140)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post138")
ptool_version = V("0.0.post140")
except ImportError:
pass

Expand Down

0 comments on commit 4cdadad

Please sign in to comment.