From 6439c7335670e487bf648ce714c2946a9585bdee Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Fri, 6 Oct 2023 18:57:45 -0400 Subject: [PATCH] .azurepipelines: Fix Python version (to 3.11) Build was previously using 3.11. Using 3.12 now that is is released. To allow scripts to take time to update, fix to 3.11. Cc: Sean Brogan Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Michael Kubacki Reviewed-by: Sean Brogan --- .azurepipelines/Ubuntu-PatchCheck.yml | 2 +- .azurepipelines/templates/defaults.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azurepipelines/Ubuntu-PatchCheck.yml b/.azurepipelines/Ubuntu-PatchCheck.yml index b86d4bc3b9..5e79474999 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: - task: UsePythonVersion@0 inputs: - versionSpec: '>=3.10.6' + versionSpec: '3.11' architecture: 'x64' - script: | diff --git a/.azurepipelines/templates/defaults.yml b/.azurepipelines/templates/defaults.yml index 8006495580..d50aa3e6d4 100644 --- a/.azurepipelines/templates/defaults.yml +++ b/.azurepipelines/templates/defaults.yml @@ -8,5 +8,5 @@ ## variables: - default_python_version: ">=3.10.6" + default_python_version: "3.11" default_linux_image: "ghcr.io/tianocore/containers/fedora-37-test:a0dd931"