From 5092d754e794aa6716f25d1d07bcb75a93c856e8 Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Fri, 3 Nov 2023 14:41:25 +0100 Subject: [PATCH] Ci: Github actions use python 3.11 for now Craft has issues with python3.12 which are fixed upstream, we however pinned the craft revision. --- .github/workflows/.craft.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/.craft.ps1 b/.github/workflows/.craft.ps1 index 8e88dbc9057..bdf15062261 100644 --- a/.github/workflows/.craft.ps1 +++ b/.github/workflows/.craft.ps1 @@ -1,5 +1,7 @@ if ($IsWindows) { $python=(py -V:3.11 -c "import sys; print(sys.executable)") +} elseif ($IsMacOS) { + $python = (Get-Command "python3.11").Source } else { $python = (Get-Command python3).Source }