From 3774ab0568eaafbfaa34785c051951346ee8cd17 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sat, 29 Oct 2022 11:04:46 -0700 Subject: [PATCH] Force install PyInstaller from git until >5.6.1 is available --- .github/workflows/build.yaml | 2 +- .github/workflows/package.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1c8b4c1..6c484c0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -74,7 +74,7 @@ jobs: - name: Install build dependencies run: | - pip install git+https://github.com/pyinstaller/pyinstaller + pip install --force-reinstall git+https://github.com/pyinstaller/pyinstaller python -m pip install --upgrade --upgrade-strategy eager -r requirements_dev.txt - name: Install Windows build dependencies diff --git a/.github/workflows/package.yaml b/.github/workflows/package.yaml index d39f6b2..e392b9b 100644 --- a/.github/workflows/package.yaml +++ b/.github/workflows/package.yaml @@ -35,7 +35,7 @@ jobs: - name: Install build dependencies run: | - pip install git+https://github.com/pyinstaller/pyinstaller + pip install --force-reinstall git+https://github.com/pyinstaller/pyinstaller python -m pip install --upgrade --upgrade-strategy eager -r requirements_dev.txt - name: Install Windows build dependencies