Skip to content

Commit 9b0be21

Browse files
authored
feat: support python 3.14 (#544)
1 parent 8e22834 commit 9b0be21

5 files changed

Lines changed: 14 additions & 10 deletions

File tree

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
0.2.10
6+
++++++
7+
* Add support for Python 3.14 and drop support for Python 3.9
8+
59
0.2.9
610
+++++
711
* `azdev latest-index`: Add `generate` and `verify` commands to manage Azure CLI packaged latest indices (`commandIndex.latest.json`, `helpIndex.latest.json`) with CI-friendly verify exit behavior.

azdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# -----------------------------------------------------------------------------
66

7-
__VERSION__ = '0.2.9'
7+
__VERSION__ = '0.2.10'

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
name: ${{ variables.ubuntu_pool }}
1717
strategy:
1818
matrix:
19-
Python39:
20-
python.version: '3.9'
21-
tox_env: 'py39'
2219
Python310:
2320
python.version: '3.10'
2421
tox_env: 'py310'
@@ -31,6 +28,9 @@ jobs:
3128
Python313:
3229
python.version: '3.13'
3330
tox_env: 'py313'
31+
Python314:
32+
python.version: '3.14'
33+
tox_env: 'py314'
3434
steps:
3535
- task: UsePythonVersion@0
3636
displayName: 'Use Python $(python.version)'
@@ -71,9 +71,9 @@ jobs:
7171
name: ${{ variables.ubuntu_pool }}
7272
steps:
7373
- task: UsePythonVersion@0
74-
displayName: 'Use Python 3.9'
74+
displayName: 'Use Python 3.12'
7575
inputs:
76-
versionSpec: 3.9
76+
versionSpec: 3.12
7777

7878
- task: Bash@3
7979
displayName: 'Run Wheel Build Script'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
'Environment :: Console',
4141
'License :: OSI Approved :: MIT License',
4242
'Natural Language :: English',
43-
'Programming Language :: Python :: 3.9',
4443
'Programming Language :: Python :: 3.10',
4544
'Programming Language :: Python :: 3.11',
4645
'Programming Language :: Python :: 3.12',
47-
'Programming Language :: Python :: 3.13'
46+
'Programming Language :: Python :: 3.13',
47+
'Programming Language :: Python :: 3.14'
4848
],
4949
keywords='azure',
50-
python_requires='>=3.9',
50+
python_requires='>=3.10',
5151
packages=[
5252
'azdev',
5353
'azdev.config',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
22
envlist =
3-
py39
43
py310
54
py311
65
py312
76
py313
7+
py314
88

99
[testenv]
1010
whitelist_externals =

0 commit comments

Comments
 (0)