Skip to content

Commit

Permalink
Updating pythondata-cpu-lm32 to 0.0.post106
Browse files Browse the repository at this point in the history
Updated data to v0.0-57-g84b3e3c based on 84b3e3c from https://github.com/m-labs/lm32.git.
> commit 84b3e3c
> Author: Michael Walle <[email protected]>
> Date:   Fri Oct 10 18:52:34 2014 +0200
>
>     convert the latex documention to rst
>
>     This will ease editing the documentation. For now only a HTML output is
>     generated.
>
>     Signed-off-by: Michael Walle <[email protected]>
>

Updated using 0.0.post49 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot authored and Travis CI User committed Apr 9, 2020
1 parent 811de98 commit d73c234
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ This Useful for usage with tools like
[LiteX](https://github.com/enjoy-digital/litex.git).

The data files can be found under the Python module `pythondata_cpu_lm32`. The
`pythondata_cpu_lm32.location` value can be used to find the files on the file system.
`pythondata_cpu_lm32.data_location` value can be used to find the files on the file
system.

Example of getting the data file directly;
```python
Expand Down
12 changes: 6 additions & 6 deletions pythondata_cpu_lm32/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/m-labs/lm32.git"

# Module version
version_str = "0.0.post105"
version_tuple = (0, 0, 105)
version_str = "0.0.post106"
version_tuple = (0, 0, 106)
try:
from packaging.version import Version as V
pversion = V("0.0.post105")
pversion = V("0.0.post106")
except ImportError:
pass

Expand Down Expand Up @@ -37,11 +37,11 @@
"""

# Tool version info
tool_version_str = "0.0.post48"
tool_version_tuple = (0, 0, 48)
tool_version_str = "0.0.post49"
tool_version_tuple = (0, 0, 49)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post48")
ptool_version = V("0.0.post49")
except ImportError:
pass

Expand Down

0 comments on commit d73c234

Please sign in to comment.