diff options
author | shirt <2660574+shirt-dev@users.noreply.github.com> | 2022-02-15 17:48:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 17:48:02 -0500 |
commit | fc259cc2498407872472a1fade1996b11795d190 (patch) | |
tree | 83ee4c5663671820b524739434377e4030108f72 | |
parent | 9a5b0125752179f6447ca29deb89ee452fd78b85 (diff) | |
download | hypervideo-pre-fc259cc2498407872472a1fade1996b11795d190.tar.lz hypervideo-pre-fc259cc2498407872472a1fade1996b11795d190.tar.xz hypervideo-pre-fc259cc2498407872472a1fade1996b11795d190.zip |
[build] Update pyinstaller to 4.9
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9880d3967..1ca67034f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -161,11 +161,10 @@ jobs: steps: - uses: actions/checkout@v2 # In order to create a universal2 application, the version of python3 in /usr/bin has to be used - # Pyinstaller is pinned to 4.5.1 because the builds are failing in 4.6, 4.7 - name: Install Requirements run: | brew install coreutils - /usr/bin/python3 -m pip install -U --user pip Pyinstaller==4.5.1 -r requirements.txt + /usr/bin/python3 -m pip install -U --user pip Pyinstaller==4.9 -r requirements.txt - name: Bump version id: bump_version run: /usr/bin/python3 devscripts/update-version.py @@ -234,7 +233,7 @@ jobs: # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds run: | python -m pip install --upgrade pip setuptools wheel py2exe - pip install "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-4.5.1-py3-none-any.whl" -r requirements.txt + pip install "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-4.9-py3-none-any.whl" -r requirements.txt - name: Bump version id: bump_version env: @@ -321,7 +320,7 @@ jobs: - name: Install Requirements run: | python -m pip install --upgrade pip setuptools wheel - pip install "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-4.5.1-py3-none-any.whl" -r requirements.txt + pip install "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-4.9-py3-none-any.whl" -r requirements.txt - name: Bump version id: bump_version env: |