Skip to content

Commit ef63276

Browse files
committed
Corrected wheel package classifiers to match supported Python versions.
1 parent 9c40c33 commit ef63276

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
package_namespace: 'pyEDAA'
2121
package_name: 'CLITool'
22-
python_version_list: '3.11 3.12 3.13 3.14'
22+
python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
2323
exclude_list: 'ubuntu-arm:* windows-arm:*'
2424
disable_list: 'windows:*'
2525

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/CLITool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__email__ = "Paebbels@gmail.com"
3535
__copyright__ = "2014-2025, Patrick Lehmann, Unai Martinez-Corral"
3636
__license__ = "Apache License, Version 2.0"
37-
__version__ = "0.3.9"
37+
__version__ = "0.3.10"
3838
__keywords__ = ["cli", "abstraction layer", "eda"]
3939

4040
from pathlib import Path

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.CLITool"
36-
$PackageVersion = "0.3.9"
36+
$PackageVersion = "0.3.10"
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
@@ -45,10 +45,11 @@
4545
description="An abstraction layer of EDA CLI tools.",
4646
gitHubNamespace=gitHubNamespace,
4747
sourceFileWithVersion=packageInformationFile,
48-
developmentStatus="beta",
4948
classifiers=list(DEFAULT_CLASSIFIERS) + [
5049
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
5150
],
51+
developmentStatus="beta",
52+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
5253
dataFiles={
5354
packageName: ["py.typed"]
5455
}

0 commit comments

Comments
 (0)