From 280165026886a1f1614ab527c34c66d71faa5d69 Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Sat, 29 Nov 2025 15:18:49 -0600 Subject: [PATCH] [build] Bump PyInstaller minimum version requirement to 6.17.0 (#15199) Ref: https://github.com/pyinstaller/pyinstaller/issues/9149 Authored by: bashonly --- .github/workflows/build.yml | 18 +++++++++--------- pyproject.toml | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b7487f1c2f..8f5df4ce4d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -422,23 +422,23 @@ jobs: runner: windows-2025 python_version: '3.10' platform_tag: win_amd64 - pyi_version: '6.16.0' - pyi_tag: '2025.09.13.221251' - pyi_hash: b6496c7630c3afe66900cfa824e8234a8c2e2c81704bd7facd79586abc76c0e5 + pyi_version: '6.17.0' + pyi_tag: '2025.11.29.054325' + pyi_hash: e28cc13e4ad0cc74330d832202806d0c1976e9165da6047309348ca663c0ed3d - arch: 'x86' runner: windows-2025 python_version: '3.10' platform_tag: win32 - pyi_version: '6.16.0' - pyi_tag: '2025.09.13.221251' - pyi_hash: 2d881843580efdc54f3523507fc6d9c5b6051ee49c743a6d9b7003ac5758c226 + pyi_version: '6.17.0' + pyi_tag: '2025.11.29.054325' + pyi_hash: c00f600c17de3bdd589f043f60ab64fc34fcba6dd902ad973af9c8afc74f80d1 - arch: 'arm64' runner: windows-11-arm python_version: '3.13' # arm64 only has Python >= 3.11 available platform_tag: win_arm64 - pyi_version: '6.16.0' - pyi_tag: '2025.09.13.221251' - pyi_hash: 4250c9085e34a95c898f3ee2f764914fc36ec59f0d97c28e6a75fcf21f7b144f + pyi_version: '6.17.0' + pyi_tag: '2025.11.29.054325' + pyi_hash: a2033b18b4f7bc6108b5fd76a92c6c1de0a12ec4fe98a23396a9f978cb4b7d7b env: CHANNEL: ${{ inputs.channel }} ORIGIN: ${{ needs.process.outputs.origin }} diff --git a/pyproject.toml b/pyproject.toml index d2c5745b95..d06e71d74b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ build = [ "build", "hatchling>=1.27.0", "pip", - "setuptools>=71.0.2,<81", # See https://github.com/pyinstaller/pyinstaller/issues/9149 + "setuptools>=71.0.2", "wheel", ] dev = [ @@ -86,7 +86,7 @@ test = [ "pytest-rerunfailures~=14.0", ] pyinstaller = [ - "pyinstaller>=6.13.0", # Windows temp cleanup fixed in 6.13.0 + "pyinstaller>=6.17.0", # 6.17.0+ needed for compat with setuptools 81+ ] [project.urls]