Skip to content

Commit 0d755c3

Browse files
authored
Merge pull request #860 from zapta/main
Added apio.ini macros.
2 parents 9b00472 + b416196 commit 0d755c3

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

apio/scons/gtkwave_util.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ def _get_gtkw_file_header(testbench_path: str) -> str:
1919
tb_path_posix = Path(testbench_path).as_posix()
2020

2121
lines = [
22-
f"# GTKWave display configuration for 'apio sim {tb_path_posix}'",
23-
f"# {GTKW_AUTO_FILE_MARKER}.",
24-
"# DO NOT EDIT IT MANUALLY!",
25-
f"# To customize this file, run 'apio sim {tb_path_posix}'",
26-
"# and save the file from GTKWave.",
22+
f"[*] GTKWave display configuration for 'apio sim {tb_path_posix}'",
23+
f"[*] {GTKW_AUTO_FILE_MARKER}.",
24+
"[*] DO NOT EDIT IT MANUALLY!",
25+
f"[*] To customize this file, run 'apio sim {tb_path_posix}'",
26+
"[*] and save the file from GTKWave.",
2727
"",
2828
"[*] GTKWave Analyzer v3.4.0 (w)1999-2022 BSI",
2929
"",

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ classifiers=[
2424
'Development Status :: 5 - Production/Stable',
2525
'Environment :: Console',
2626
'Intended Audience :: Developers',
27-
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
28-
'Programming Language :: Python',
27+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
28+
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
2932
'Natural Language :: English',
3033
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
3134
]
@@ -45,7 +48,6 @@ requires = [
4548
'tinyfpgab==1.1.0',
4649
'tinyprog==1.0.21',
4750
'icefunprog==2.0.3',
48-
'apycula==0.15',
4951
'apollo_fpga==1.1.1',
5052
'protobuf==6.33.0',
5153
'rich==14.0.0',

tests/unit_tests/scons/test_gtkwave_util.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
# Expected default gtkw file lines for the examples we use below.
1111
EXPECTED_GTKW_LINES = [
12-
"# GTKWave display configuration for 'apio sim main_tb.v'",
13-
"# THIS FILE WAS GENERATED AUTOMATICALLY BY APIO.",
14-
"# DO NOT EDIT IT MANUALLY!",
15-
"# To customize this file, run 'apio sim main_tb.v'",
16-
"# and save the file from GTKWave.",
12+
"[*] GTKWave display configuration for 'apio sim main_tb.v'",
13+
"[*] THIS FILE WAS GENERATED AUTOMATICALLY BY APIO.",
14+
"[*] DO NOT EDIT IT MANUALLY!",
15+
"[*] To customize this file, run 'apio sim main_tb.v'",
16+
"[*] and save the file from GTKWave.",
1717
"",
1818
"[*] GTKWave Analyzer v3.4.0 (w)1999-2022 BSI",
1919
"",

0 commit comments

Comments
 (0)