Skip to content

Commit 1172b70

Browse files
committed
Added Python 3.14 support. Dropped Python 3.9 and 3.10 support.
1 parent 5bbff1e commit 1172b70

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
1313
with:
1414
package_name: 'pyVHDLModel'
15+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
1516
bandit: 'true'
1617
pylint: 'false'
1718
codecov: 'true'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@
4747
gitHubNamespace=gitHubNamespace,
4848
keywords="Python3 VHDL Language Model Abstract",
4949
sourceFileWithVersion=packageInformationFile,
50-
developmentStatus="beta",
5150
classifiers=list(DEFAULT_CLASSIFIERS) + [
5251
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
5352
"Topic :: Software Development :: Code Generators",
5453
"Topic :: Software Development :: Compilers",
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)