diff options
author | Joey Vagedes <joeyvagedes@microsoft.com> | 2023-10-30 09:41:31 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-10-31 14:40:50 +0000 |
commit | 8e7462907050350f8a9ed54437a4441082180a9c (patch) | |
tree | afbe15e46dd4365409a9b15e9e2e057bd154d06c | |
parent | 2426a356258f0f759eb0661e1f8c0196aac48123 (diff) | |
download | edk2-8e7462907050350f8a9ed54437a4441082180a9c.tar.gz |
.azurepipelines: Fix Python version (to 3.12)
Upgrades python to 3.12 for build as it has been released and all
supporting tools have been updated to also support 3.12.
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Michael Kubacki <mikuback@linux.microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Joey Vagedes <joeyvagedes@gmail.com>
Message-Id: <20231030164131.20419-1-joeyvagedes@microsoft.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>
-rw-r--r-- | .azurepipelines/Ubuntu-PatchCheck.yml | 2 | ||||
-rw-r--r-- | .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 5e79474999..a397cf3f4d 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: '3.11'
+ versionSpec: '3.12'
architecture: 'x64'
- script: |
diff --git a/.azurepipelines/templates/defaults.yml b/.azurepipelines/templates/defaults.yml index d50aa3e6d4..bc1cd058cc 100644 --- a/.azurepipelines/templates/defaults.yml +++ b/.azurepipelines/templates/defaults.yml @@ -8,5 +8,5 @@ ##
variables:
- default_python_version: "3.11"
+ default_python_version: "3.12"
default_linux_image: "ghcr.io/tianocore/containers/fedora-37-test:a0dd931"
|