From 333ad533c1fd98b0420116b10a0d0ed6641a2d27 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 8 Oct 2024 07:07:21 -0400 Subject: [PATCH] actions: Py3.13 requires PyInstaller 6.10+, see if we can get it working we may need to revert to 3.12 / 6.9 if this proves problematic --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd03e48f..51c7019a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -505,8 +505,8 @@ jobs: git clone https://github.com/pyinstaller/pyinstaller.git cd pyinstaller export latest_release=$(git tag --list | grep -v dev | grep -v rc | sort -Vr | head -n1) - # git checkout "${latest_release}" - git checkout "v6.9.0" + git checkout "${latest_release}" + # git checkout "v6.9.0" # remove pre-compiled bootloaders so we fail if bootloader compile fails rm -rvf PyInstaller/bootloader/*-*/* cd bootloader