Skip to content

Commit f02762d

Browse files
authored
v0.14.4
2 parents 8a25293 + d8ca911 commit f02762d

File tree

20 files changed

+128
-884
lines changed

20 files changed

+128
-884
lines changed

.github/dependabot.yml

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
version: 2
22
updates:
3-
- package-ecosystem: pip
4-
directory: "/"
5-
target-branch: dev
6-
commit-message:
7-
prefix: "[Dependabot]"
8-
labels:
3+
# Maintain Python packages
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
target-branch: dev
7+
commit-message:
8+
prefix: "[Dependabot]"
9+
labels:
910
- Dependencies
10-
assignees:
11-
- Paebbels
12-
reviewers:
13-
- Paebbels
14-
schedule:
15-
interval: daily
11+
reviewers:
12+
- Paebbels
13+
- Umarcor
14+
schedule:
15+
interval: "daily" # Checks on Monday trough Friday.
16+
17+
# Maintain GitHub Action runners
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
target-branch: dev
21+
commit-message:
22+
prefix: "[Dependabot]"
23+
labels:
24+
- Dependencies
25+
reviewers:
26+
- Paebbels
27+
- Umarcor
28+
schedule:
29+
interval: "weekly"

.github/pull_request_template.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# New Features
2+
23
* tbd
34

45
# Changes
6+
57
* tbd
68

79
# Bug Fixes
10+
11+
* tbd
12+
13+
----------
14+
# Related PRs:
15+
816
* tbd

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,15 @@ document = Document(sourceFile)
6868
design.AddDocument(document, library)
6969

7070
for entity in document.Entities:
71-
print("{}".format(entity.Identifier))
71+
print(f"{entity.Identifier}")
7272
print(" generics:")
7373
for generic in entity.GenericItems:
74-
print(" - {} : {!s} {}".format(
75-
", ".join([str(i) for i in generic.Identifiers]), generic.Mode, generic.Subtype)
76-
)
74+
identifiers = ", ".join([str(i) for i in generic.Identifiers])
75+
print(f" - {identifiers} : {generic.Mode!s} {generic.Subtype}")
7776
print(" ports:")
7877
for port in entity.PortItems:
79-
print(" - {} : {!s} {}".format(
80-
", ".join([str(i) for i in port.Identifiers]), port.Mode, port.Subtype)
81-
)
78+
identifiers = ", ".join([str(i) for i in port.Identifiers])
79+
print(f" - {identifiers} : {port.Mode!s} {port.Subtype}")
8280
```
8381

8482

doc/Dependency.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pyVHDLModel Package
2727
+--------------------------------------------------------+-------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
2828
| **Package** | **Version** | **License** | **Dependencies** |
2929
+========================================================+=============+==========================================================================================+=================================================================================================================================+
30-
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ |1.9.2 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/master/LICENSE.txt>`__ | |
30+
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ |2.1.0 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/master/LICENSE.txt>`__ | |
3131
+--------------------------------------------------------+-------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
3232

3333

@@ -55,15 +55,15 @@ the mandatory dependencies too.
5555
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
5656
| **Package** | **Version** | **License** | **Dependencies** |
5757
+===========================================================+=============+========================================================================================+======================+
58-
| `pytest <https://GitHub.com/pytest-dev/pytest>`__ |6.2.5 | `MIT <https://GitHub.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
58+
| `pytest <https://GitHub.com/pytest-dev/pytest>`__ |7.0.1 | `MIT <https://GitHub.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
5959
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6060
| `pytest-cov <https://GitHub.com/pytest-dev/pytest-cov>`__ | ≥3.0.0 | `MIT <https://GitHub.com/pytest-dev/pytest-cov/blob/master/LICENSE>`__ | *Not yet evaluated.* |
6161
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
62-
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥6.2 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
62+
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥6.3 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
6363
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6464
| `mypy <https://GitHub.com/python/mypy>`__ | ≥0.931 | `MIT <https://GitHub.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
6565
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
66-
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥4.6 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
66+
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥4.9 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
6767
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6868

6969

@@ -91,15 +91,15 @@ the mandatory dependencies too.
9191
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
9292
| **Package** | **Version** | **License** | **Dependencies** |
9393
+=================================================================================================+==============+==========================================================================================================+======================+
94-
| `Sphinx <https://GitHub.com/sphinx-doc/sphinx>`__ |4.3.0 | `BSD 3-Clause <https://GitHub.com/sphinx-doc/sphinx/blob/master/LICENSE>`__ | *Not yet evaluated.* |
94+
| `Sphinx <https://GitHub.com/sphinx-doc/sphinx>`__ |5.0.2 | `BSD 3-Clause <https://GitHub.com/sphinx-doc/sphinx/blob/master/LICENSE>`__ | *Not yet evaluated.* |
9595
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
9696
| `sphinx_btd_theme <https://GitHub.com/buildthedocs/sphinx.theme>`__ | | `MIT <https://GitHub.com/buildthedocs/sphinx.theme/blob/master/LICENSE>`__ | *Not yet evaluated.* |
9797
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
9898
| `autoapi <https://GitHub.com/carlos-jenkins/autoapi>`__ | | `Apache License, 2.0 <https://GitHub.com/carlos-jenkins/autoapi/blob/master/LICENSE>`__ | *Not yet evaluated.* |
9999
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
100100
| !! `sphinx_fontawesome <https://GitHub.com/fraoustin/sphinx_fontawesome>`__ | ≥0.0.6 | `GPL 2.0 <https://GitHub.com/fraoustin/sphinx_fontawesome/blob/master/LICENSE>`__ | *Not yet evaluated.* |
101101
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
102-
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥1.14.1 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
102+
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥1.18.3 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
103103
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+----------------------+
104104

105105

@@ -127,7 +127,7 @@ install the mandatory dependencies too.
127127
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
128128
| **Package** | **Version** | **License** | **Dependencies** |
129129
+============================================================================+==============+==========================================================================================================+======================================================================================================================================================+
130-
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ |1.9.2 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.md>`__ | *None* |
130+
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ |2.1.0 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.md>`__ | *None* |
131131
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
132132
| `wheel <https://GitHub.com/pypa/wheel>`__ | any | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
133133
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+

doc/_extensions/.gitempty

Whitespace-only changes.

doc/_extensions/autoapi/__init__.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)