public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH v1 0/2] Fix Python minor version
@ 2023-10-06 23:10 Michael Kubacki
  2023-10-06 23:10 ` [edk2-devel] [PATCH v1 1/2] .azurepipelines: Fix Python version (to 3.11) Michael Kubacki
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Michael Kubacki @ 2023-10-06 23:10 UTC (permalink / raw)
  To: devel; +Cc: Sean Brogan, Michael D Kinney, Liming Gao

From: Michael Kubacki <michael.kubacki@microsoft.com>

Python 3.12 released recently. The Python version is currently
specified to allow updates to newer minor versions. Time is
needed to adjust scripts for Python 3.12 so this series fixes
the Python version to 3.11.

Some places that were already fixed but need the version updated
to 3.11 for consistency are updated as well.

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>

Michael Kubacki (2):
  .azurepipelines: Fix Python version (to 3.11)
  .github: Fix Python version (to 3.11)

 .azurepipelines/Ubuntu-PatchCheck.yml  | 2 +-
 .azurepipelines/templates/defaults.yml | 2 +-
 .github/workflows/codeql-analysis.yml  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.42.0.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109370): https://edk2.groups.io/g/devel/message/109370
Mute This Topic: https://groups.io/mt/101808693/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [edk2-devel] [PATCH v1 1/2] .azurepipelines: Fix Python version (to 3.11)
  2023-10-06 23:10 [edk2-devel] [PATCH v1 0/2] Fix Python minor version Michael Kubacki
@ 2023-10-06 23:10 ` Michael Kubacki
  2023-10-06 23:10 ` [edk2-devel] [PATCH v1 2/2] .github: " Michael Kubacki
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Kubacki @ 2023-10-06 23:10 UTC (permalink / raw)
  To: devel; +Cc: Sean Brogan, Michael D Kinney, Liming Gao

From: Michael Kubacki <michael.kubacki@microsoft.com>

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>
---
 .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 b86d4bc3b93f..5e79474999b6 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 8006495580f3..d50aa3e6d4d0 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"
-- 
2.42.0.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109371): https://edk2.groups.io/g/devel/message/109371
Mute This Topic: https://groups.io/mt/101808694/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [edk2-devel] [PATCH v1 2/2] .github: Fix Python version (to 3.11)
  2023-10-06 23:10 [edk2-devel] [PATCH v1 0/2] Fix Python minor version Michael Kubacki
  2023-10-06 23:10 ` [edk2-devel] [PATCH v1 1/2] .azurepipelines: Fix Python version (to 3.11) Michael Kubacki
@ 2023-10-06 23:10 ` Michael Kubacki
  2023-10-06 23:39 ` [edk2-devel] [PATCH v1 0/2] Fix Python minor version Sean
  2023-10-08 16:57 ` Marcin Juszkiewicz
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Kubacki @ 2023-10-06 23:10 UTC (permalink / raw)
  To: devel; +Cc: Sean Brogan, Michael D Kinney

From: Michael Kubacki <michael.kubacki@microsoft.com>

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>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
---
 .github/workflows/codeql-analysis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index cc7f06f7b5b7..992b3b6f654e 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -85,7 +85,7 @@ jobs:
     - name: Install Python
       uses: actions/setup-python@v4
       with:
-        python-version: '3.10.6'
+        python-version: '3.11'
         cache: 'pip'
         cache-dependency-path: 'pip-requirements.txt'
 
-- 
2.42.0.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109372): https://edk2.groups.io/g/devel/message/109372
Mute This Topic: https://groups.io/mt/101808697/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [edk2-devel] [PATCH v1 0/2] Fix Python minor version
  2023-10-06 23:10 [edk2-devel] [PATCH v1 0/2] Fix Python minor version Michael Kubacki
  2023-10-06 23:10 ` [edk2-devel] [PATCH v1 1/2] .azurepipelines: Fix Python version (to 3.11) Michael Kubacki
  2023-10-06 23:10 ` [edk2-devel] [PATCH v1 2/2] .github: " Michael Kubacki
@ 2023-10-06 23:39 ` Sean
  2023-10-08 16:57 ` Marcin Juszkiewicz
  3 siblings, 0 replies; 5+ messages in thread
From: Sean @ 2023-10-06 23:39 UTC (permalink / raw)
  To: devel, mikuback; +Cc: Sean Brogan, Michael D Kinney, Liming Gao

for the series

Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>

On 10/6/2023 4:10 PM, Michael Kubacki wrote:
> From: Michael Kubacki <michael.kubacki@microsoft.com>
>
> Python 3.12 released recently. The Python version is currently
> specified to allow updates to newer minor versions. Time is
> needed to adjust scripts for Python 3.12 so this series fixes
> the Python version to 3.11.
>
> Some places that were already fixed but need the version updated
> to 3.11 for consistency are updated as well.
>
> 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>
>
> Michael Kubacki (2):
>    .azurepipelines: Fix Python version (to 3.11)
>    .github: Fix Python version (to 3.11)
>
>   .azurepipelines/Ubuntu-PatchCheck.yml  | 2 +-
>   .azurepipelines/templates/defaults.yml | 2 +-
>   .github/workflows/codeql-analysis.yml  | 2 +-
>   3 files changed, 3 insertions(+), 3 deletions(-)
>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109374): https://edk2.groups.io/g/devel/message/109374
Mute This Topic: https://groups.io/mt/101808693/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [edk2-devel] [PATCH v1 0/2] Fix Python minor version
  2023-10-06 23:10 [edk2-devel] [PATCH v1 0/2] Fix Python minor version Michael Kubacki
                   ` (2 preceding siblings ...)
  2023-10-06 23:39 ` [edk2-devel] [PATCH v1 0/2] Fix Python minor version Sean
@ 2023-10-08 16:57 ` Marcin Juszkiewicz
  3 siblings, 0 replies; 5+ messages in thread
From: Marcin Juszkiewicz @ 2023-10-08 16:57 UTC (permalink / raw)
  To: devel, mikuback; +Cc: Sean Brogan, Michael D Kinney, Liming Gao

W dniu 7.10.2023 o 01:10, Michael Kubacki pisze:
> Python 3.12 released recently. The Python version is currently specified 
> to allow updates to newer minor versions. Time is needed to adjust 
> scripts for Python 3.12 so this series fixes the Python version to 3.11. 
> Some places that were already fixed but need the version updated to 3.11 
> for consistency are updated as well.



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109502): https://edk2.groups.io/g/devel/message/109502
Mute This Topic: https://groups.io/mt/101808693/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-10-10 20:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-06 23:10 [edk2-devel] [PATCH v1 0/2] Fix Python minor version Michael Kubacki
2023-10-06 23:10 ` [edk2-devel] [PATCH v1 1/2] .azurepipelines: Fix Python version (to 3.11) Michael Kubacki
2023-10-06 23:10 ` [edk2-devel] [PATCH v1 2/2] .github: " Michael Kubacki
2023-10-06 23:39 ` [edk2-devel] [PATCH v1 0/2] Fix Python minor version Sean
2023-10-08 16:57 ` Marcin Juszkiewicz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox