diff --git a/azure-pipeline.yml b/azure-pipeline.yml index 2281dcd..3fb1474 100644 --- a/azure-pipeline.yml +++ b/azure-pipeline.yml @@ -20,9 +20,6 @@ jobs: name: 'pool-ubuntu-latest-multi-core' strategy: matrix: - Python39: - python.version: '3.9' - tox_env: 'py39' Python310: python.version: '3.10' tox_env: 'py310' @@ -35,6 +32,9 @@ jobs: Python313: python.version: '3.13' tox_env: 'py313' + Python314: + python.version: '3.14' + tox_env: 'py314' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' @@ -57,7 +57,7 @@ jobs: steps: - task: UsePythonVersion@0 inputs: - versionSpec: 3.13 + versionSpec: '3.14' - bash: | set -ev diff --git a/setup.py b/setup.py index 5576f42..f5b48c3 100644 --- a/setup.py +++ b/setup.py @@ -38,11 +38,11 @@ 'Intended Audience :: System Administrators', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', 'License :: OSI Approved :: MIT License', ], packages=['knack', 'knack.testsdk'], diff --git a/tox.ini b/tox.ini index 4db59e4..d40bf27 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39,py310,py311,py312,py313 +envlist = py310,py311,py312,py313,py314 [testenv] deps = -rrequirements.txt commands=