Skip to content

Commit

Permalink
Updating pythondata-misc-tapcfg to 0.0.post424
Browse files Browse the repository at this point in the history
Updated data to v0.0-375-gbd557ff based on bd557ff from https://github.com/enjoy-digital/tapcfg.
> commit bd557ff
> Merge: 4ce399d 1a2accc
> Author: enjoy-digital <[email protected]>
> Date:   Wed May 1 12:11:43 2019 +0200
>
>     Merge pull request #1 from gsomlo/gls-strncpy-werror
>
>     fix strncpy string truncation warning/error
>

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 4240a6d commit 98cf040
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_misc_tapcfg`. The
`pythondata_misc_tapcfg.location` value can be used to find the files on the file system.
`pythondata_misc_tapcfg.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_misc_tapcfg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/enjoy-digital/tapcfg"

# Module version
version_str = "0.0.post423"
version_tuple = (0, 0, 423)
version_str = "0.0.post424"
version_tuple = (0, 0, 424)
try:
from packaging.version import Version as V
pversion = V("0.0.post423")
pversion = V("0.0.post424")
except ImportError:
pass

Expand All @@ -35,11 +35,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 98cf040

Please sign in to comment.