Skip to content

Commit 7c393c5

Browse files
{CI} Update pipeline to use Python 3.14 (#9843)
* {CI} Update pipeline to use Python 3.14 * {CI} Quote versionSpec values in pipeline
1 parent e3ae8fe commit 7c393c5

1 file changed

Lines changed: 15 additions & 13 deletions

File tree

azure-pipelines.yml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
name: ${{ variables.ubuntu_pool }}
5858
steps:
5959
- task: UsePythonVersion@0
60-
displayName: 'Use Python 3.13'
60+
displayName: 'Use Python 3.14'
6161
inputs:
62-
versionSpec: 3.13
62+
versionSpec: '3.14'
6363
- template: .azure-pipelines/templates/azdev_setup.yml
6464
- bash: |
6565
#!/usr/bin/env bash
@@ -73,9 +73,9 @@ jobs:
7373
name: ${{ variables.ubuntu_pool }}
7474
steps:
7575
- task: UsePythonVersion@0
76-
displayName: 'Use Python 3.13'
76+
displayName: 'Use Python 3.14'
7777
inputs:
78-
versionSpec: 3.13
78+
versionSpec: '3.14'
7979
- bash: |
8080
#!/usr/bin/env bash
8181
set -ev
@@ -98,6 +98,8 @@ jobs:
9898
python.version: '3.12'
9999
Python313:
100100
python.version: '3.13'
101+
Python314:
102+
python.version: '3.14'
101103
steps:
102104
- task: UsePythonVersion@0
103105
displayName: 'Use Python $(python.version)'
@@ -133,9 +135,9 @@ jobs:
133135
name: ${{ variables.ubuntu_pool }}
134136
steps:
135137
- task: UsePythonVersion@0
136-
displayName: 'Use Python 3.13'
138+
displayName: 'Use Python 3.14'
137139
inputs:
138-
versionSpec: 3.13
140+
versionSpec: '3.14'
139141
- template: .azure-pipelines/templates/azdev_setup.yml
140142
- bash: |
141143
#!/usr/bin/env bash
@@ -175,9 +177,9 @@ jobs:
175177
name: ${{ variables.ubuntu_pool }}
176178
steps:
177179
- task: UsePythonVersion@0
178-
displayName: 'Use Python 3.13'
180+
displayName: 'Use Python 3.14'
179181
inputs:
180-
versionSpec: 3.13
182+
versionSpec: '3.14'
181183
- template: .azure-pipelines/templates/azdev_setup.yml
182184
- bash: |
183185
#!/usr/bin/env bash
@@ -202,7 +204,7 @@ jobs:
202204
- task: UsePythonVersion@0
203205
displayName: 'Use Python 3.11'
204206
inputs:
205-
versionSpec: 3.11
207+
versionSpec: '3.11'
206208
- template: .azure-pipelines/templates/azdev_setup.yml
207209
- bash: |
208210
#!/usr/bin/env bash
@@ -233,7 +235,7 @@ jobs:
233235
- task: UsePythonVersion@0
234236
displayName: 'Use Python 3.11'
235237
inputs:
236-
versionSpec: 3.11
238+
versionSpec: '3.11'
237239
- template: .azure-pipelines/templates/azdev_setup.yml
238240
- bash: |
239241
#!/usr/bin/env bash
@@ -260,9 +262,9 @@ jobs:
260262
# name: ${{ variables.ubuntu_pool }}
261263
# steps:
262264
# - task: UsePythonVersion@0
263-
# displayName: 'Use Python 3.13'
265+
# displayName: 'Use Python 3.14'
264266
# inputs:
265-
# versionSpec: 3.13
267+
# versionSpec: '3.14'
266268
# - bash: pip install wheel==0.30.0
267269
# displayName: 'Install wheel==0.30.0'
268270
# - task: Bash@3
@@ -279,6 +281,6 @@ jobs:
279281
- task: UsePythonVersion@0
280282
displayName: 'Use Python 3.x'
281283
inputs:
282-
versionSpec: 3.x
284+
versionSpec: '3.x'
283285
- bash: |
284286
python scripts/ci/test_init.py -v

0 commit comments

Comments
 (0)