Skip to content

Commit 98ebd26

Browse files
committed
Updating pythondata-cpu-picorv32 to 1.0.post218
Updated data to v1.0-70-g87c89acc1899 based on 87c89ac from https://github.com/YosysHQ/picorv32. > commit 87c89ac > Author: Miodrag Milanovic <[email protected]> > Date: Mon Jun 17 08:20:13 2024 +0200 > > clean Makefile > Updated using 0.0.post148 from https://github.com/litex-hub/litex-data-auto
1 parent a6e8fd1 commit 98ebd26

File tree

3 files changed

+21
-24
lines changed

3 files changed

+21
-24
lines changed

.github/workflows/publish-to-pypi.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
# Always clone the full depth so git-describe works.
1818
fetch-depth: 0
@@ -70,14 +70,14 @@ jobs:
7070
runs-on: ubuntu-latest
7171

7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v4
7474
with:
7575
# Always clone the full depth so git-describe works.
7676
fetch-depth: 0
7777
submodules: true
7878

7979
- name: Set up Python 🐍 ${{ matrix.python-version }}
80-
uses: actions/setup-python@v2
80+
uses: actions/setup-python@v5
8181
with:
8282
python-version: ${{ matrix.python-version }}
8383

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ with open(data_file(my_data_file)) as f:
3131
```
3232

3333

34-
The data files come from https://github.com/cliffordwolf/picorv32
34+
The data files come from https://github.com/YosysHQ/picorv32
3535
and are imported using `git subtrees` to the directory
3636
[pythondata_cpu_picorv32/verilog](pythondata_cpu_picorv32/verilog).
3737

@@ -104,6 +104,6 @@ pythondata-cpu-picorv32
104104
# Issues and Fixes
105105

106106
This package is autogenerated from the sources in
107-
<https://github.com/cliffordwolf/picorv32>
107+
<https://github.com/YosysHQ/picorv32>
108108
using the [pythondata-auto](https://github.com/litex-hub/pythondata-auto)
109109
toolset. Pull requests and issues on this pythondata repo may not be monitored.

pythondata_cpu_picorv32/__init__.py

+16-19
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,42 @@
11
import os.path
22
__dir__ = os.path.split(os.path.abspath(os.path.realpath(__file__)))[0]
33
data_location = os.path.join(__dir__, "verilog")
4-
src = "https://github.com/cliffordwolf/picorv32"
4+
src = "https://github.com/YosysHQ/picorv32"
55

66
# Module version
7-
version_str = "1.0.post194"
8-
version_tuple = (1, 0, 194)
7+
version_str = "1.0.post218"
8+
version_tuple = (1, 0, 218)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("1.0.post194")
11+
pversion = V("1.0.post218")
1212
except ImportError:
1313
pass
1414

1515
# Data version info
16-
data_version_str = "1.0.post52"
17-
data_version_tuple = (1, 0, 52)
16+
data_version_str = "1.0.post70"
17+
data_version_tuple = (1, 0, 70)
1818
try:
1919
from packaging.version import Version as V
20-
pdata_version = V("1.0.post52")
20+
pdata_version = V("1.0.post70")
2121
except ImportError:
2222
pass
23-
data_git_hash = "f00a88c36eaab478b64ee27d8162e421049bcc66"
24-
data_git_describe = "v1.0-52-gf00a88c"
23+
data_git_hash = "87c89acc18994c8cf9a2311e871818e87d304568"
24+
data_git_describe = "v1.0-70-g87c89acc1899"
2525
data_git_msg = """\
26-
commit f00a88c36eaab478b64ee27d8162e421049bcc66
27-
Merge: 1d9f5b7 e8dbd9a
28-
Author: Claire Xen <[email protected]>
29-
Date: Mon Jan 3 16:03:13 2022 +0100
26+
commit 87c89acc18994c8cf9a2311e871818e87d304568
27+
Author: Miodrag Milanovic <[email protected]>
28+
Date: Mon Jun 17 08:20:13 2024 +0200
3029
31-
Merge pull request #209 from YosysHQ/micko/cleanups
32-
33-
Cleanups
30+
clean Makefile
3431
3532
"""
3633

3734
# Tool version info
38-
tool_version_str = "0.0.post142"
39-
tool_version_tuple = (0, 0, 142)
35+
tool_version_str = "0.0.post148"
36+
tool_version_tuple = (0, 0, 148)
4037
try:
4138
from packaging.version import Version as V
42-
ptool_version = V("0.0.post142")
39+
ptool_version = V("0.0.post148")
4340
except ImportError:
4441
pass
4542

0 commit comments

Comments
 (0)