Lock python version to 3.11.4 as 3.11.5 introduces a change that brea… (#3380)

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.
This commit is contained in:
zhexu14 2024-04-18 07:55:04 +10:00 committed by GitHub
parent 4c5d968dd7
commit 55c77ed7c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ runs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: "3.11" python-version: "3.11.4"
cache: pip cache: pip
- name: Install environment - name: Install environment