Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.2 #8

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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__ = "[email protected]"
__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
Loading