Skip to content

Commit b717831

Browse files
timvideos-robotTravis CI User
authored and
Travis CI User
committed
Updated using 0.0.post49 from https://github.com/litex-hub/litex-data-auto
1 parent ddec0a2 commit b717831

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ This Useful for usage with tools like
77
[LiteX](https://github.com/enjoy-digital/litex.git).
88

99
The data files can be found under the Python module `pythondata_cpu_vexriscv`. The
10-
`pythondata_cpu_vexriscv.location` value can be used to find the files on the file system.
10+
`pythondata_cpu_vexriscv.data_location` value can be used to find the files on the file
11+
system.
1112

1213
Example of getting the data file directly;
1314
```python

pythondata_cpu_vexriscv/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
src = "https://github.com/SpinalHDL/VexRISCV.git"
55

66
# Module version
7-
version_str = "1.0.1.post313"
8-
version_tuple = (1, 0, 1, 313)
7+
version_str = "1.0.1.post314"
8+
version_tuple = (1, 0, 1, 314)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("1.0.1.post313")
11+
pversion = V("1.0.1.post314")
1212
except ImportError:
1313
pass
1414

@@ -27,11 +27,11 @@
2727
"""
2828

2929
# Tool version info
30-
tool_version_str = "0.0.post48"
31-
tool_version_tuple = (0, 0, 48)
30+
tool_version_str = "0.0.post49"
31+
tool_version_tuple = (0, 0, 49)
3232
try:
3333
from packaging.version import Version as V
34-
ptool_version = V("0.0.post48")
34+
ptool_version = V("0.0.post49")
3535
except ImportError:
3636
pass
3737

0 commit comments

Comments
 (0)