Skip to content

Commit 833a08d

Browse files
committed
stabilizing a couple different places
1 parent fab0278 commit 833a08d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

eng/pipelines/templates/jobs/ci.tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989

9090
- task: UsePythonVersion@0
9191
inputs:
92-
versionSpec: '3.8'
92+
versionSpec: '3.10'
9393

9494
- template: /eng/common/pipelines/templates/steps/set-test-pipeline-version.yml
9595
parameters:

eng/pipelines/templates/steps/build-extended-artifacts.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ steps:
2929
artifactName: 'packages'
3030
targetPath: $(Build.ArtifactStagingDirectory)
3131

32+
- task: UsePythonVersion@0
33+
displayName: 'Use Python 3.11'
34+
inputs:
35+
versionSpec: '3.11'
36+
3237
- template: /eng/common/pipelines/templates/steps/set-test-pipeline-version.yml
3338
parameters:
3439
PackageName: "azure-template"
@@ -42,11 +47,6 @@ steps:
4247
displayName: 'Tag scheduled builds'
4348
condition: and(eq(variables['Build.SourceBranchName'], variables['DefaultBranch']), eq(variables['Build.Reason'],'Schedule'))
4449
45-
- task: UsePythonVersion@0
46-
displayName: 'Use Python 3.11'
47-
inputs:
48-
versionSpec: '3.11'
49-
5050
- template: /eng/pipelines/templates/steps/use-venv.yml
5151

5252
- script: |
@@ -69,8 +69,8 @@ steps:
6969
inputs:
7070
scriptPath: 'scripts/devops_tasks/dispatch_tox.py'
7171
arguments: >-
72-
"$(TargetingString)"
73-
--service="${{ parameters.ServiceDirectory }}"
72+
"$(TargetingString)"
73+
--service="${{ parameters.ServiceDirectory }}"
7474
--toxenv=sphinx
7575
--wheel_dir="$(Build.ArtifactStagingDirectory)"
7676
@@ -94,7 +94,7 @@ steps:
9494
$directoryExists = Test-Path -Path "$(Build.SourcesDirectory)/_docs"
9595
Write-Output "##vso[task.setvariable variable=DirectoryExists]$directoryExists"
9696
displayName: Check if docs directory exists
97-
97+
9898
- template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
9999
parameters:
100100
ArtifactPath: '$(Build.SourcesDirectory)/_docs'

0 commit comments

Comments
 (0)