diff options
author | Sergey <SG5@users.noreply.github.com> | 2022-11-09 19:24:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 08:54:14 +0530 |
commit | dc3028d233b2f7091215dc0d9acc522914b9b59d (patch) | |
tree | 8b467057adaa377d16566d63884b667134b7b4d8 /.github | |
parent | 4dc23a80510d75546f49f8742cf8b704a2efc808 (diff) | |
download | hypervideo-pre-dc3028d233b2f7091215dc0d9acc522914b9b59d.tar.lz hypervideo-pre-dc3028d233b2f7091215dc0d9acc522914b9b59d.tar.xz hypervideo-pre-dc3028d233b2f7091215dc0d9acc522914b9b59d.zip |
[build] `py2exe`: Migrate to freeze API (#5149)
Closes #5135
Authored by: SG5, pukkandan
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12e5426b1..b35c35047 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -194,7 +194,7 @@ jobs: python-version: '3.8' - name: Install Requirements run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds - python -m pip install --upgrade pip setuptools wheel "py2exe<0.12" + python -m pip install --upgrade pip setuptools wheel py2exe pip install "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-5.3-py3-none-any.whl" -r requirements.txt - name: Prepare |