Skip to content

Commit 6f706c4

Browse files
authored
v0.6.3
2 parents 92a6f95 + 502ff54 commit 6f706c4

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
with:
1414
package_namespace: 'pyEDAA'
1515
package_name: 'IPXACT'
16+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
1617
bandit: 'true'
1718
pylint: 'false'
1819
codecov: 'true'

doc/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pushd %~dp0
55
REM Command file for Sphinx documentation
66

77
if "%SPHINXBUILD%" == "" (
8-
set SPHINXBUILD=py -3.13 -m sphinx.cmd.build
8+
set SPHINXBUILD=py -3.14 -m sphinx.cmd.build
99
)
1010
set SOURCEDIR=.
1111
set BUILDDIR=_build

pyEDAA/IPXACT/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
__email__ = "Paebbels@gmail.com"
4949
__copyright__ = "2016-2025, Patrick Lehmann"
5050
__license__ = "Apache License, Version 2.0"
51-
__version__ = "0.6.2"
51+
__version__ = "0.6.3"
5252

5353

5454
@export

run.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Param(
3333
)
3434

3535
$PackageName = "pyEDAA.IPXACT"
36-
$PackageVersion = "0.6.2"
36+
$PackageVersion = "0.6.3"
3737

3838
# set default values
3939
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]
@@ -89,7 +89,7 @@ if ($build)
8989
rm -Force .\build\bdist.win-amd64
9090
rm -Force .\build\lib
9191
Write-Host -ForegroundColor Yellow "[live][BUILD] Building $PackageName package as wheel ..."
92-
py -3.13 -m build --wheel --no-isolation
92+
py -3.14 -m build --wheel --no-isolation
9393

9494
Write-Host -ForegroundColor Yellow "[live][BUILD] Building wheel finished"
9595
}
@@ -103,9 +103,9 @@ if ($install)
103103
}
104104
else
105105
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
106-
py -3.13 -m pip uninstall -y $PackageName
106+
py -3.14 -m pip uninstall -y $PackageName
107107
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Installing $PackageName from wheel ..."
108-
py -3.13 -m pip install .\dist\$($PackageName.Replace(".", "_").ToLower())-$PackageVersion-py3-none-any.whl
108+
py -3.14 -m pip install .\dist\$($PackageName.Replace(".", "_").ToLower())-$PackageVersion-py3-none-any.whl
109109

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

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@
4747
description="A Document-Object-Model (DOM) for IP-XACT files.",
4848
gitHubNamespace=gitHubNamespace,
4949
sourceFileWithVersion=packageInformationFile,
50-
developmentStatus="alpha",
5150
classifiers=list(DEFAULT_CLASSIFIERS) + [
5251
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
5352
],
53+
developmentStatus="alpha",
54+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
5455
dataFiles={
5556
packageName: [
5657
str(file.relative_to(Path.cwd() / "pyEDAA/IPXACT")) for file in chain(

0 commit comments

Comments
 (0)