From 55c77ed7c35c0a87596dc9266279739c7e1dc78b Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Thu, 18 Apr 2024 07:55:04 +1000 Subject: [PATCH] =?UTF-8?q?Lock=20python=20version=20to=203.11.4=20as=203.?= =?UTF-8?q?11.5=20introduces=20a=20change=20that=20brea=E2=80=A6=20(#3380)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 3.11.5 introduces a change that breaks unpickling of save files that leads to #3379. This PR introduces a short term fix by locking the python version used in the build until the root cause can be found and fixed. --- .github/actions/setup-liberation-python/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-liberation-python/action.yaml b/.github/actions/setup-liberation-python/action.yaml index 4d2d7877..d62d1401 100644 --- a/.github/actions/setup-liberation-python/action.yaml +++ b/.github/actions/setup-liberation-python/action.yaml @@ -6,7 +6,7 @@ runs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.11" + python-version: "3.11.4" cache: pip - name: Install environment