Skip to content

Commit 6e7ffb6

Browse files
committed
Adjusted wheel package classifiers to match supported Python versions.
1 parent 93aeb96 commit 6e7ffb6

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
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

run.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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)