From c63b5ec92ff351cac2c2175d14b9bdbae0ffe262 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 5 Mar 2026 10:58:30 +0000 Subject: [PATCH] Fix incorrect Python directory path in Windows installer cleanup step The "Clean up unnecessary Python files" step referenced "py/Lib/site-packages" but the embeddable Python is extracted to "python-$PYTHON_VERSION/Lib/site-packages". https://claude.ai/code/session_01Wec3EbnZWp4J89xc3EMxyU --- .github/workflows/build-windows-executable-app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-windows-executable-app.yaml b/.github/workflows/build-windows-executable-app.yaml index 90fc544..c757504 100644 --- a/.github/workflows/build-windows-executable-app.yaml +++ b/.github/workflows/build-windows-executable-app.yaml @@ -248,7 +248,7 @@ jobs: - name: Clean up unnecessary Python files shell: pwsh run: | - $sitePkgs = "py/Lib/site-packages" + $sitePkgs = "python-${{ env.PYTHON_VERSION }}/Lib/site-packages" # Remove __pycache__ directories Get-ChildItem -Path $sitePkgs -Recurse -Directory -Filter "__pycache__" | Remove-Item -Recurse -Force