Skip to content

Commit 34391f4

Browse files
committed
Adjusted wheel package classifiers to match supported Python versions.
1 parent 44e9cd7 commit 34391f4

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/Pipeline.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ jobs:
1313
with:
1414
package_namespace: 'pyEDAA'
1515
package_name: 'ProjectModel'
16-
unittest_disable_list: 'mingw64:* ucrt64:*'
16+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
17+
unittest_disable_list: 'mingw64:* ucrt64:* ubuntu-arm:pypy-3.11 windows-arm:pypy-3.11'
1718
apptest_python_version_list: '' # use latest Python version
1819
apptest_system_list: 'ubuntu macos macos-arm'
19-
bandit: 'true'
20-
pylint: 'true'
21-
codecov: 'true'
22-
codacy: 'true'
23-
dorny: 'true'
20+
bandit: 'true'
21+
pylint: 'false'
22+
codecov: 'true'
23+
codacy: 'true'
24+
dorny: 'true'
2425
secrets:
2526
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
2627
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@
4949
"osvvm": ["pyEDAA.OSVVM ~= 0.6"],
5050
},
5151
sourceFileWithVersion=packageInformationFile,
52-
developmentStatus="beta",
5352
classifiers=list(DEFAULT_CLASSIFIERS) + [
5453
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
5554
],
55+
developmentStatus="beta",
56+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
5657
dataFiles={
5758
packageName: ["py.typed"]
5859
}

0 commit comments

Comments
 (0)