From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pf1-f179.google.com (mail-pf1-f179.google.com [209.85.210.179]) by mx.groups.io with SMTP id smtpd.web11.158.1646781478225241640 for ; Tue, 08 Mar 2022 15:17:58 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@gmail.com header.s=20210112 header.b=a66ejmqw; spf=pass (domain: gmail.com, ip: 209.85.210.179, mailfrom: kenlautner3@gmail.com) Received: by mail-pf1-f179.google.com with SMTP id g1so711716pfv.1 for ; Tue, 08 Mar 2022 15:17:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=9Ai12AMZT9El8zRUJbZdkX+BvjC9H54qt1U4n+dPzmI=; b=a66ejmqws3RKraE9Y2KMAm6lLjbXqNC82ZrNZVqwIrzfK+uDYAN7miT07hIkUhbVRj LZHsLsm6wv0ClKrzREHvm2nPADOQp8fViwyDro/K5uzY+1vPI0TGfjz8U/gVPn+d/mDX X338ZxFIgUwPU++eQCFZpkOog4gz0+sPt9PpJf4XxOMEXdiXbwKH8V5XryfOAjgeAOmX FIw15FNo0Ik+WnY45evGN7Gjvi2xDh0c5w8b1SsRWzrsfb0IxfhOLoO2HiM2Bb5AMPIj yYRUHxArbRWjpPTdTlk0uNkNIoNKpTSS1VkSunDWQjbAX6OmgTKGVue6K+SP7zid9T4Q OWKg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=9Ai12AMZT9El8zRUJbZdkX+BvjC9H54qt1U4n+dPzmI=; b=MS+wa5Krn8jo1PvzTa7dXmBJzvVuPFejpYms8vs97yARCtD7TW+0mIHUrzf1PV5cjN 88/X9TSQerMyjpLIzUnKK7eleVh666eQaEMBsWA9ET+DIbRkq6kGSRp1EJ/AyjknbMdh aFllqGASLminY5MNOGuhs6HjCU3SuLT+omNBoTD7aeVaIaj30wQNLwCM6Ebb9C2e0tXL O4wX7bor77OyG/Zl21+I/AB1u7IxjZjRDeqIvOsHjRZjNQiPk4xQNJv9mP9ZXZp08oHw BobOoHXuhcvYVEqUnPpmP9UChblgf+3w0IOZQ3yvtWxG2XNaEkkhR79EB9aPdIPRJftS 5gkA== X-Gm-Message-State: AOAM532rYMSafej7qoQL/vjompbH8WnkOK7SotzEMRQs1ube1IXM5QwX 2WpPvatxy+2xxoAUgMs3sifMAbvUUwQ= X-Google-Smtp-Source: ABdhPJyrVEsQM15XNcVV/yfTsoRoQaztpRBELHAu19v7E5mEpv2e0sQ9lh9qTnnWlwAd797c69WyFg== X-Received: by 2002:aa7:81ca:0:b0:4f6:d297:4213 with SMTP id c10-20020aa781ca000000b004f6d2974213mr20523772pfn.59.1646781477488; Tue, 08 Mar 2022 15:17:57 -0800 (PST) Return-Path: Received: from localhost.localdomain ([12.157.155.61]) by smtp.gmail.com with ESMTPSA id 25-20020a17090a191900b001bf53bab69dsm163192pjg.35.2022.03.08.15.17.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 08 Mar 2022 15:17:56 -0800 (PST) From: "Kenneth Lautner" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [PATCH v4 2/2] .azurepipelines: Updated python versions Date: Tue, 8 Mar 2022 15:17:43 -0800 Message-Id: <20220308231743.4540-3-kenlautner3@gmail.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20220308231743.4540-1-kenlautner3@gmail.com> References: <20220308231743.4540-1-kenlautner3@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Ken Lautner Updated .azurepipelines to use newest python version Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Kenneth Lautner Reviewed-by: Sean Brogan --- .azurepipelines/Ubuntu-PatchCheck.yml | 2 +- .azurepipelines/templates/platform-build-run-steps.yml | 2 +- .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 4de453bf9db8..d1b214f3a909 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: =0D - task: UsePythonVersion@0=0D inputs:=0D - versionSpec: '3.7.x'=0D + versionSpec: '3.10.x'=0D architecture: 'x64'=0D =0D - script: |=0D diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azur= epipelines/templates/platform-build-run-steps.yml index 97e7faa26682..8b3112935867 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -42,7 +42,7 @@ steps: =0D - task: UsePythonVersion@0=0D inputs:=0D - versionSpec: "3.8.x"=0D + versionSpec: "3.10.x"=0D architecture: "x64"=0D =0D - script: pip install -r pip-requirements.txt --upgrade=0D diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/= templates/pr-gate-steps.yml index 70c19a462194..754fecd2ecdf 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -20,7 +20,7 @@ steps: =0D - task: UsePythonVersion@0=0D inputs:=0D - versionSpec: '3.8.x'=0D + versionSpec: '3.10.x'=0D architecture: 'x64'=0D =0D - script: pip install -r pip-requirements.txt --upgrade=0D --=20 2.31.1.windows.1