From 7d5415c2017440c05046eb53c79f0c9e292235a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 18 Jul 2024 02:20:52 +0200 Subject: [PATCH] [workflow:executables] restrict 'setuptools' to <71 setuptools 71 together with secretstorage dependencies causees an ImportErrorWhenRunningHook exception in PyInstaller for whatever reason --- .github/workflows/executables.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/executables.yml b/.github/workflows/executables.yml index 78c95add..71bb3728 100644 --- a/.github/workflows/executables.yml +++ b/.github/workflows/executables.yml @@ -71,7 +71,7 @@ jobs: - name: Build executable run: | - pip install 'requests<2.32' requests[socks] yt-dlp pyyaml ${{ matrix.python-packages }} pyinstaller + pip install 'setuptools<71' 'requests<2.32' requests[socks] yt-dlp pyyaml ${{ matrix.python-packages }} pyinstaller python ./scripts/pyinstaller.py --label '${{ env.LABEL }}' - uses: actions/upload-artifact@v4