.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 <sean.brogan@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>
This commit is contained in:
Michael Kubacki 2023-10-06 18:57:45 -04:00 committed by mergify[bot]
parent d073a54511
commit 6439c73356
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '>=3.10.6'
versionSpec: '3.11'
architecture: 'x64'
- script: |

View File

@ -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"