File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed
Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff 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 "" ,
Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff line change 99
1010# Expected default gtkw file lines for the examples we use below.
1111EXPECTED_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 "" ,
You can’t perform that action at this time.
0 commit comments