diff options
author | shirt <2660574+shirt-dev@users.noreply.github.com> | 2021-08-09 15:51:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 01:21:02 +0530 |
commit | 476febeb3a06769fb25ae1a9bd1798ef54c48cb2 (patch) | |
tree | dce5b66d0a74565797a441ec0f80c59059cb5518 | |
parent | b6a35ad83bbe2cbb9cda17052fd68e2dff16e99b (diff) | |
download | hypervideo-pre-476febeb3a06769fb25ae1a9bd1798ef54c48cb2.tar.lz hypervideo-pre-476febeb3a06769fb25ae1a9bd1798ef54c48cb2.tar.xz hypervideo-pre-476febeb3a06769fb25ae1a9bd1798ef54c48cb2.zip |
[build] Use custom build of `pyinstaller` (#663)
Related: #25
Authored-by: shirt
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9fa01d54..4c56a5180 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,8 @@ jobs: - name: Upgrade pip and enable wheel support run: python -m pip install --upgrade pip setuptools wheel - name: Install Requirements - run: pip install pyinstaller mutagen pycryptodome websockets + # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds + run: pip install "https://yt-dlp.github.io/pyinstaller-builds/x86_64/pyinstaller-4.5.1-py3-none-any.whl" mutagen pycryptodome websockets - name: Bump version id: bump_version run: python devscripts/update-version.py @@ -147,7 +148,7 @@ jobs: - name: Upgrade pip and enable wheel support run: python -m pip install --upgrade pip setuptools wheel - name: Install Requirements - run: pip install pyinstaller mutagen pycryptodome websockets + run: pip install "https://yt-dlp.github.io/pyinstaller-builds/i686/pyinstaller-4.5.1-py3-none-any.whl" mutagen pycryptodome websockets - name: Bump version id: bump_version run: python devscripts/update-version.py |