Skip to content

Commit

Permalink
v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Nov 11, 2024
2 parents fcfc141 + c9aeae6 commit bdae152
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
# ==============================================================================
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"setup": ("https://setuptools.pypa.io/en/latest", None),
"pyTool": ("https://pyTooling.github.io/pyTooling/", None),
}


Expand Down Expand Up @@ -255,7 +255,7 @@
report_unittest_testsuites = {
"src": {
"name": f"{project}",
"xml_report": "../report/unit/unittest.xml",
"xml_report": "../report/unit/TestReportSummary.xml",
}
}
report_codecov_packages = {
Expand Down
6 changes: 3 additions & 3 deletions pySystemRDLModel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2023-2024, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "0.3.1"
__version__ = "0.3.2"


@export
Expand All @@ -73,7 +73,7 @@ class SystemRDLVersion(Enum):
SystemRDL2012 = 2012 #: SystemRDL-2012
SystemRDL2017 = 2017 #: SystemRDL-2017

Latest = 10000
Latest = 10000 #: Latest SystemRDL (2017)

__VERSION_MAPPINGS__: Dict[Union[int, str], Enum] = {
-1: Any,
Expand Down Expand Up @@ -110,7 +110,7 @@ def Parse(cls, value: Union[int, str]) -> "SystemRDLVersion":
"""
Parses a SystemRDL year code as integer or string to an enum value.
:param value: VHDL/VHDL-AMS year code.
:param value: SystemRDL year code.
:returns: Enumeration value.
:raises ValueError: If the year code is not recognized.
"""
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ filterwarnings = [
"error::DeprecationWarning",
"error::PendingDeprecationWarning"
]
junit_logging = "all"

[tool.interrogate]
color = true
Expand Down
2 changes: 1 addition & 1 deletion run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if ($install)
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
py -3.12 -m pip uninstall -y $PackageName
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Installing $PackageName from wheel ..."
py -3.12 -m pip install .\dist\$PackageName-6.7.0-py3-none-any.whl
py -3.12 -m pip install .\dist\$PackageName-0.3.1-py3-none-any.whl

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

0 comments on commit bdae152

Please sign in to comment.