Skip to content

Commit e7cb9b7

Browse files
committed
Init
1 parent 41969a2 commit e7cb9b7

File tree

9 files changed

+24
-20
lines changed

9 files changed

+24
-20
lines changed

azure-pipelines-full-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ variables:
1616
- template: ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/variables.yml
1717

1818
jobs:
19-
- job: AutomationFullTestPython39ProfileLatest
20-
displayName: Automation Full Test Python39 Profile Latest
19+
- job: AutomationFullTestPython312ProfileLatest
20+
displayName: Automation Full Test Python312 Profile Latest
2121
timeoutInMinutes: 9999
2222
strategy:
2323
maxParallel: 8
@@ -43,15 +43,15 @@ jobs:
4343
steps:
4444
- template: .azure-pipelines/templates/automation_test.yml
4545
parameters:
46-
pythonVersion: '3.9'
46+
pythonVersion: '3.12'
4747
profile: 'latest'
4848
instance_cnt: '8'
4949
instance_idx: '$(Instance_idx)'
5050
fullTest: true
5151
jobName: 'FullTest'
5252

53-
- job: AutomationFullTestPython312ProfileLatest
54-
displayName: Automation Full Test Python312 Profile Latest
53+
- job: AutomationFullTestPython313ProfileLatest
54+
displayName: Automation Full Test Python313 Profile Latest
5555
timeoutInMinutes: 9999
5656
strategy:
5757
maxParallel: 8
@@ -77,7 +77,7 @@ jobs:
7777
steps:
7878
- template: .azure-pipelines/templates/automation_test.yml
7979
parameters:
80-
pythonVersion: '3.12'
80+
pythonVersion: '3.13'
8181
profile: 'latest'
8282
instance_cnt: '8'
8383
instance_idx: '$(Instance_idx)'

azure-pipelines.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -468,10 +468,10 @@ jobs:
468468
displayName: Test Python Wheels
469469
strategy:
470470
matrix:
471-
Python39:
472-
python.version: '3.9'
473471
Python312:
474472
python.version: '3.12'
473+
Python313:
474+
python.version: '3.13'
475475
dependsOn: BuildPythonWheel
476476
condition: succeeded()
477477
pool:
@@ -508,10 +508,10 @@ jobs:
508508
name: ${{ variables.ubuntu_pool }}
509509
strategy:
510510
matrix:
511-
Python39:
512-
python.version: '3.9'
513511
Python312:
514512
python.version: '3.12'
513+
Python313:
514+
python.version: '3.13'
515515
steps:
516516
- template: .azure-pipelines/templates/automation_test.yml
517517
parameters:
@@ -525,10 +525,10 @@ jobs:
525525
name: ${{ variables.ubuntu_pool }}
526526
strategy:
527527
matrix:
528-
Python39:
529-
python.version: '3.9'
530528
Python312:
531529
python.version: '3.12'
530+
Python313:
531+
python.version: '3.13'
532532
steps:
533533
- template: .azure-pipelines/templates/automation_test.yml
534534
parameters:
@@ -545,10 +545,10 @@ jobs:
545545
name: ${{ variables.ubuntu_pool }}
546546
strategy:
547547
matrix:
548-
Python39:
549-
python.version: '3.9'
550548
Python312:
551549
python.version: '3.12'
550+
Python313:
551+
python.version: '3.13'
552552
steps:
553553
- task: UsePythonVersion@0
554554
displayName: 'Use Python $(python.version)'
@@ -1070,10 +1070,10 @@ jobs:
10701070
displayName: "PerformanceCheck"
10711071
strategy:
10721072
matrix:
1073-
Python39:
1074-
python.version: '3.9'
10751073
Python312:
10761074
python.version: '3.12'
1075+
Python313:
1076+
python.version: '3.13'
10771077
pool:
10781078
name: ${{ variables.ubuntu_pool }}
10791079
steps:

doc/command_guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ Follow the [Error Handling Guidelines](https://github.com/Azure/azure-cli/blob/d
426426

427427
## Coding Practices
428428

429-
- All code must support Python 3.9 ~ 3.12
429+
- All code must support Python 3.9 ~ 3.13
430430
- PRs to Azure/azure-cli and Azure/azure-cli-extensions must pass CI
431431
- Code must pass style checks with pylint and pep8
432432
- (*) All commands should have tests

doc/extensions/authoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ See [Extension Metadata](metadata.md) for more information.
130130

131131
### Test your extension on Python 3
132132

133-
- The Azure CLI supports Python 3.9 ~ 3.12 so verify that your extension does the same.
133+
- The Azure CLI supports Python 3.9 ~ 3.13 so verify that your extension does the same.
134134
- You can create virtual environments for different versions and run your extension in them.
135135
- e.g. `python3.9 -m venv env38` and `python3.10 -m venv env310`.
136136

doc/install_linux_prerequisites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Some native Linux packages are required when installing the CLI with:
66
- Interactive installation script
77
- `pip`
88

9-
Current supported Python versions are Python 3.9 ~ 3.12.
9+
Current supported Python versions are Python 3.9 ~ 3.13.
1010

1111
The commands to run to install the dependencies for some common distributions are listed below.
1212

13-
### Ubuntu 20.04 LTS, Ubuntu 22.04 LTS, Ubuntu 24.04 LTS, Debian 11, Debian 12
13+
### Ubuntu 22.04 LTS, Ubuntu 24.04 LTS, Debian 11, Debian 12
1414
```
1515
sudo apt-get update && sudo apt-get install -y libssl-dev libffi-dev python-dev build-essential
1616
```

src/azure-cli-core/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
'Programming Language :: Python :: 3.10',
4040
'Programming Language :: Python :: 3.11',
4141
'Programming Language :: Python :: 3.12',
42+
'Programming Language :: Python :: 3.13',
4243
'License :: OSI Approved :: MIT License',
4344
]
4445

src/azure-cli-telemetry/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
'Programming Language :: Python :: 3.10',
2121
'Programming Language :: Python :: 3.11',
2222
'Programming Language :: Python :: 3.12',
23+
'Programming Language :: Python :: 3.13',
2324
'License :: OSI Approved :: MIT License',
2425
]
2526

src/azure-cli-testsdk/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Programming Language :: Python :: 3.10',
2020
'Programming Language :: Python :: 3.11',
2121
'Programming Language :: Python :: 3.12',
22+
'Programming Language :: Python :: 3.13',
2223
'License :: OSI Approved :: MIT License',
2324
]
2425

src/azure-cli/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
'Programming Language :: Python :: 3.10',
4747
'Programming Language :: Python :: 3.11',
4848
'Programming Language :: Python :: 3.12',
49+
'Programming Language :: Python :: 3.13',
4950
'License :: OSI Approved :: MIT License',
5051
]
5152

0 commit comments

Comments
 (0)