Skip to content

Commit c9aeae6

Browse files
committed
Minor fixes.
1 parent 6ab3631 commit c9aeae6

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
# ==============================================================================
183183
intersphinx_mapping = {
184184
"python": ("https://docs.python.org/3", None),
185-
"setup": ("https://setuptools.pypa.io/en/latest", None),
185+
"pyTool": ("https://pyTooling.github.io/pyTooling/", None),
186186
}
187187

188188

@@ -255,7 +255,7 @@
255255
report_unittest_testsuites = {
256256
"src": {
257257
"name": f"{project}",
258-
"xml_report": "../report/unit/unittest.xml",
258+
"xml_report": "../report/unit/TestReportSummary.xml",
259259
}
260260
}
261261
report_codecov_packages = {

pySystemRDLModel/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
__email__ = "Paebbels@gmail.com"
5353
__copyright__ = "2023-2024, Patrick Lehmann"
5454
__license__ = "Apache License, Version 2.0"
55-
__version__ = "0.3.1"
55+
__version__ = "0.3.2"
5656

5757

5858
@export
@@ -73,7 +73,7 @@ class SystemRDLVersion(Enum):
7373
SystemRDL2012 = 2012 #: SystemRDL-2012
7474
SystemRDL2017 = 2017 #: SystemRDL-2017
7575

76-
Latest = 10000
76+
Latest = 10000 #: Latest SystemRDL (2017)
7777

7878
__VERSION_MAPPINGS__: Dict[Union[int, str], Enum] = {
7979
-1: Any,
@@ -110,7 +110,7 @@ def Parse(cls, value: Union[int, str]) -> "SystemRDLVersion":
110110
"""
111111
Parses a SystemRDL year code as integer or string to an enum value.
112112
113-
:param value: VHDL/VHDL-AMS year code.
113+
:param value: SystemRDL year code.
114114
:returns: Enumeration value.
115115
:raises ValueError: If the year code is not recognized.
116116
"""

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ filterwarnings = [
3030
"error::DeprecationWarning",
3131
"error::PendingDeprecationWarning"
3232
]
33+
junit_logging = "all"
3334

3435
[tool.interrogate]
3536
color = true

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ if ($install)
104104
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
105105
py -3.12 -m pip uninstall -y $PackageName
106106
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Installing $PackageName from wheel ..."
107-
py -3.12 -m pip install .\dist\$PackageName-6.7.0-py3-none-any.whl
107+
py -3.12 -m pip install .\dist\$PackageName-0.3.1-py3-none-any.whl
108108

109109
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Closing window in 5 seconds ..."
110110
Start-Sleep -Seconds 5

0 commit comments

Comments
 (0)