peakrdl-python 0.9.4__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/.github/workflows/action.yaml +9 -10
- peakrdl_python-1.0.1/MANIFEST.in +4 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/PKG-INFO +6 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/conf.py +1 -3
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/requirements.txt +0 -1
- peakrdl_python-1.0.1/pyproject.toml +638 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/__about__.py +1 -1
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/__peakrdl__.py +1 -1
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/_node_walkers.py +18 -17
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/compiler_udp.py +5 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/exporter.py +44 -29
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/async_memory.py +24 -23
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/async_register_and_field.py +44 -44
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/base.py +36 -36
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/base_field.py +5 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/base_register.py +8 -8
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/callbacks.py +5 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/memory.py +25 -24
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/register_and_field.py +42 -42
- peakrdl_python-1.0.1/src/peakrdl_python/py.typed +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/safe_name_utility.py +25 -15
- peakrdl_python-1.0.1/src/peakrdl_python/sim_lib/__init__.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/dummy_callbacks.py +5 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/memory.py +2 -2
- peakrdl_python-1.0.1/src/peakrdl_python/sim_lib/py.typed +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/register.py +4 -4
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/simulator.py +9 -9
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/systemrdl_node_utility_functions.py +27 -21
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap.py.jinja +8 -11
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_field.py.jinja +1 -1
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_memory.py.jinja +4 -4
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_register.py.jinja +3 -3
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_simulation_tb.py.jinja +1 -1
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_tb.py.jinja +25 -25
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/baseclass_tb.py.jinja +4 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/sim_addrmap.py.jinja +3 -3
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/PKG-INFO +6 -5
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/SOURCES.txt +3 -2
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/requires.txt +1 -1
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/simple_components.py +21 -19
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/test_array_indexing.py +12 -11
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/test_export.py +1 -2
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/test_optimised_reg_array.py +14 -13
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/test_reg.py +11 -9
- peakrdl_python-0.9.4/MANIFEST.in +0 -1
- peakrdl_python-0.9.4/pyproject.toml +0 -69
- peakrdl_python-0.9.4/tests/.mypy.ini +0 -5
- peakrdl_python-0.9.4/tests/pylint.rc +0 -561
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/.gitignore +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/.readthedocs.yaml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/LICENSE +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/README.md +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/api.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/api_components.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/command_line.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/customisation.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/design_decisions.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/design_tools.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/generated_package.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/genindex.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/index.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/docs/installation.rst +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/array_access/array_access.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/array_access/demo_array_access.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/enumerated_fields/demo_enumerated_fields.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/enumerated_fields/enumerated_fields.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/optimised_access/demo_optimised_access.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/optimised_access/demo_optimised_array_access.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/optimised_access/optimised_access.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/optimised_access/optimised_array_access.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/overridden_names/demo_over_ridden_names.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/overridden_names/overridden_names.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/simulating_callbacks/chip_with_a_GPIO.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/simulating_callbacks/flashing_the_LED.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/tranversing_address_map/chip_with_registers.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/tranversing_address_map/dumping_register_state_to_json_file.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/tranversing_address_map/reg_dump.json +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/tranversing_address_map/reseting_registers.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/tranversing_address_map/writing_register_state_from_json_file.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/user_defined_properties/demo_user_defined_properties.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/user_defined_properties/user_defined_properties.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/why_ral/__init__.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/why_ral/gpio.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/why_ral/with_hal.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/why_ral/with_ral.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/example/why_ral/without_ral.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/generate_and_test.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/generate_testcases.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/setup.cfg +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/.coveragerc +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/__init__.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/__init__.py +0 -0
- /peakrdl_python-0.9.4/src/peakrdl_python/sim_lib/__init__.py → /peakrdl_python-1.0.1/src/peakrdl_python/lib/py.typed +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/lib/utility_functions.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/_callbacks.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/base.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/sim_lib/field.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/__init__.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_simulation.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/addrmap_udp_property.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/baseclass_simulation_tb.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/example.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/header.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/header_tb.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python/templates/reg_definitions.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/dependency_links.txt +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/entry_points.txt +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/src/peakrdl_python.egg-info/top_level.txt +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates/header.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates/header_tb.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_dynamic/header.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_dynamic/header_tb.py.jinja +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_dynamic_toml/header_check.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_dynamic_toml/peakrdl.toml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_toml/header_check.py +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/alternative_templates_toml/peakrdl.toml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/RDLFormatCode_example.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/addr_map.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/all_register_access_types.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/basic.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/block_a.xml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/block_b.xml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/different_array_types.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/enum_example.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/example_issue_106.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/extended_memories.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/extended_sizes_registers_array.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/field_scope.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/field_with_overridden_reset.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/fields_with_HW_write.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/fields_with_reset_values.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/hidden_property.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/memories.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/memories_with_registers.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/msb0_and_lsb0.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/multi_block.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/multifile.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/name_clash.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/overridden_python_name.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/parametrised_readonly_and_readwrite.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/regfile_and_arrays.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/reserved_elements.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/same_but_different_enum.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/signals_definitions_at_various_levels.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/simple.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/simple.xml +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/simulator_test.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/sizes_registers.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/sizes_registers_array.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/user_defined_properties.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/testcases/write_only_enum_with_undefined_reset.rdl +0 -0
- {peakrdl_python-0.9.4 → peakrdl_python-1.0.1}/tests/unit_tests/__init__.py +0 -0
|
@@ -37,14 +37,14 @@ jobs:
|
|
|
37
37
|
python -m pip install -U pylint
|
|
38
38
|
|
|
39
39
|
- name: Run Main code Lint
|
|
40
|
-
run: pylint
|
|
40
|
+
run: pylint src/peakrdl_python
|
|
41
41
|
|
|
42
42
|
- name: Install dependencies for unit tests
|
|
43
43
|
run: |
|
|
44
44
|
python -m pip install .[unit_test] -U
|
|
45
45
|
|
|
46
46
|
- name: Run unit tests Lint
|
|
47
|
-
run: pylint
|
|
47
|
+
run: pylint src/peakrdl_python tests/unit_tests
|
|
48
48
|
|
|
49
49
|
mypy:
|
|
50
50
|
runs-on: ubuntu-latest
|
|
@@ -61,7 +61,7 @@ jobs:
|
|
|
61
61
|
python -m pip install .
|
|
62
62
|
python -m pip install -U mypy
|
|
63
63
|
- name: Type Check
|
|
64
|
-
run: mypy src/peakrdl_python
|
|
64
|
+
run: mypy src/peakrdl_python
|
|
65
65
|
|
|
66
66
|
unit_tests:
|
|
67
67
|
needs:
|
|
@@ -279,14 +279,16 @@ jobs:
|
|
|
279
279
|
python -m pip install mypy
|
|
280
280
|
|
|
281
281
|
python generate_testcases.py
|
|
282
|
-
mypy testcase_output
|
|
283
|
-
# pylint
|
|
282
|
+
mypy testcase_output
|
|
283
|
+
# pylint testcase_output/autopep8 --disable=duplicate-code,line-too-long,too-many-statements,invalid-name,unused-import,too-many-instance-attributes,too-many-arguments,too-many-lines
|
|
284
284
|
|
|
285
285
|
python -m unittest discover -s testcase_output
|
|
286
286
|
|
|
287
287
|
autoformating:
|
|
288
288
|
needs:
|
|
289
289
|
- integration_tests
|
|
290
|
+
- peakrdl_integration
|
|
291
|
+
- dev_runner
|
|
290
292
|
|
|
291
293
|
runs-on: ubuntu-latest
|
|
292
294
|
strategy:
|
|
@@ -326,16 +328,14 @@ jobs:
|
|
|
326
328
|
# run the autoformatting
|
|
327
329
|
black autoformatted_output --line-length 120
|
|
328
330
|
# check the files are correct with mypy and unittesting
|
|
329
|
-
mypy autoformatted_output
|
|
331
|
+
mypy autoformatted_output
|
|
330
332
|
python -m unittest discover -s autoformatted_output
|
|
331
333
|
|
|
332
334
|
#-------------------------------------------------------------------------------
|
|
333
335
|
build:
|
|
334
336
|
needs:
|
|
335
|
-
- integration_tests
|
|
336
337
|
- autoformating
|
|
337
|
-
|
|
338
|
-
- peakrdl_integration
|
|
338
|
+
|
|
339
339
|
name: Build source distribution
|
|
340
340
|
runs-on: ubuntu-latest
|
|
341
341
|
steps:
|
|
@@ -358,7 +358,6 @@ jobs:
|
|
|
358
358
|
path: |
|
|
359
359
|
dist/*.tar.gz
|
|
360
360
|
dist/*.whl
|
|
361
|
-
|
|
362
361
|
|
|
363
362
|
#-------------------------------------------------------------------------------
|
|
364
363
|
deploy:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: peakrdl-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Generate Python Register Access Layer (RAL) from SystemRDL
|
|
5
5
|
Author: Keith Brady
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -683,7 +683,7 @@ Project-URL: Tracker, https://github.com/krcb197/PeakRDL-python/issues
|
|
|
683
683
|
Project-URL: Documentation, https://peakrdl-python.readthedocs.io/
|
|
684
684
|
Project-URL: Changelog, https://github.com/krcb197/PeakRDL-python/releases
|
|
685
685
|
Keywords: SystemRDL,PeakRDL,CSR,compiler,tool,registers,generator,Python
|
|
686
|
-
Classifier: Development Status ::
|
|
686
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
687
687
|
Classifier: Programming Language :: Python
|
|
688
688
|
Classifier: Programming Language :: Python :: 3
|
|
689
689
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -696,10 +696,11 @@ Classifier: Intended Audience :: Developers
|
|
|
696
696
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
697
697
|
Classifier: Operating System :: OS Independent
|
|
698
698
|
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
699
|
-
|
|
699
|
+
Classifier: Typing :: Typed
|
|
700
|
+
Requires-Python: >=3.9.2
|
|
700
701
|
Description-Content-Type: text/markdown
|
|
701
702
|
License-File: LICENSE
|
|
702
|
-
Requires-Dist: systemrdl-compiler>=1.
|
|
703
|
+
Requires-Dist: systemrdl-compiler>=1.29.3
|
|
703
704
|
Requires-Dist: jinja2
|
|
704
705
|
Requires-Dist: typing-extensions; python_version < "3.11"
|
|
705
706
|
Provides-Extra: dev
|
|
@@ -14,7 +14,6 @@ import os
|
|
|
14
14
|
import sys
|
|
15
15
|
import datetime
|
|
16
16
|
sys.path.insert(0, os.path.abspath('..'))
|
|
17
|
-
sys.path.insert(0, os.path.join(os.path.abspath('..'), 'src'))
|
|
18
17
|
|
|
19
18
|
|
|
20
19
|
# -- Project information -----------------------------------------------------
|
|
@@ -30,8 +29,7 @@ author = 'Keith Brady'
|
|
|
30
29
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
31
30
|
# ones.
|
|
32
31
|
extensions = ['sphinx.ext.autodoc',
|
|
33
|
-
'sphinx.ext.napoleon'
|
|
34
|
-
'sphinxarg.ext']
|
|
32
|
+
'sphinx.ext.napoleon']
|
|
35
33
|
|
|
36
34
|
# Add any paths that contain templates here, relative to this directory.
|
|
37
35
|
templates_path = ['_templates']
|