Skip to content

Commit

Permalink
{CI} Update pipeline to use Python 3.12 (#8116)
Browse files Browse the repository at this point in the history
  • Loading branch information
bebound authored Oct 25, 2024
1 parent 41ce142 commit 9ec9484
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ jobs:
name: 'pool-ubuntu-2004'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.11'
displayName: 'Use Python 3.12'
inputs:
versionSpec: 3.11
versionSpec: 3.12
- template: .azure-pipelines/templates/azdev_setup.yml
- bash: |
#!/usr/bin/env bash
Expand All @@ -70,13 +70,13 @@ jobs:
name: 'pool-ubuntu-2004'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.11'
displayName: 'Use Python 3.12'
inputs:
versionSpec: 3.11
versionSpec: 3.12
- bash: |
#!/usr/bin/env bash
set -ev
pip install wheel==0.30.0 requests packaging
pip install wheel==0.30.0 requests packaging setuptools
export CI="ADO"
python ./scripts/ci/test_index.py -v
displayName: "Verify Extensions Index"
Expand All @@ -94,7 +94,7 @@ jobs:
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
python.version: '3.12'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
Expand Down Expand Up @@ -122,9 +122,9 @@ jobs:
name: 'pool-ubuntu-2004'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.11'
displayName: 'Use Python 3.12'
inputs:
versionSpec: 3.11
versionSpec: 3.12
- template: .azure-pipelines/templates/azdev_setup.yml
- bash: |
#!/usr/bin/env bash
Expand All @@ -146,9 +146,9 @@ jobs:
name: 'pool-ubuntu-2004'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.11'
displayName: 'Use Python 3.12'
inputs:
versionSpec: 3.11
versionSpec: 3.12
- template: .azure-pipelines/templates/azdev_setup.yml
- bash: |
#!/usr/bin/env bash
Expand Down Expand Up @@ -200,9 +200,9 @@ jobs:
# name: 'pool-ubuntu-2004'
# steps:
# - task: UsePythonVersion@0
# displayName: 'Use Python 3.11'
# displayName: 'Use Python 3.12'
# inputs:
# versionSpec: 3.11
# versionSpec: 3.12
# - bash: pip install wheel==0.30.0
# displayName: 'Install wheel==0.30.0'
# - task: Bash@3
Expand Down

0 comments on commit 9ec9484

Please sign in to comment.