diff options
Diffstat (limited to '.azurepipelines')
-rw-r--r-- | .azurepipelines/Ubuntu-PatchCheck.yml | 2 | ||||
-rw-r--r-- | .azurepipelines/templates/platform-build-run-steps.yml | 2 | ||||
-rw-r--r-- | .azurepipelines/templates/pr-gate-steps.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.azurepipelines/Ubuntu-PatchCheck.yml b/.azurepipelines/Ubuntu-PatchCheck.yml index 1bc28176b6..b86d4bc3b9 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: '3.8.x'
+ versionSpec: '>=3.10.6'
architecture: 'x64'
- script: |
diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml index 97e7faa266..40a31a509f 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -42,7 +42,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: "3.8.x"
+ versionSpec: ">=3.10.6"
architecture: "x64"
- script: pip install -r pip-requirements.txt --upgrade
diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/templates/pr-gate-steps.yml index 70c19a4621..cb431e53fc 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -20,7 +20,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: '3.8.x'
+ versionSpec: '>=3.10.6'
architecture: 'x64'
- script: pip install -r pip-requirements.txt --upgrade
|