diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-09-25 18:07:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 23:07:17 +0000 |
commit | fb8b7f226d251e521a89b23c415e249e5b788e5c (patch) | |
tree | 45053b8afc4f2f455c06efb29c69f86636a7c586 | |
parent | b397a64691421ace5df09457c2a764821a2dc6f2 (diff) |
[build] Bump PyInstaller version pin to `>=6.10.0` (#10709)
Authored by: bashonly
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ff1cbc1d..bd2e42d9a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -409,7 +409,7 @@ jobs: run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds python devscripts/install_deps.py -o --include build python devscripts/install_deps.py --include curl-cffi - python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-6.7.0-py3-none-any.whl" + python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-6.10.0-py3-none-any.whl" - name: Prepare run: | @@ -469,7 +469,7 @@ jobs: run: | python devscripts/install_deps.py -o --include build python devscripts/install_deps.py - python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-6.7.0-py3-none-any.whl" + python -m pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-6.10.0-py3-none-any.whl" - name: Prepare run: | diff --git a/pyproject.toml b/pyproject.toml index 86a8f0f7e..18d9a0a3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,7 @@ test = [ "pytest~=8.1", ] pyinstaller = [ - "pyinstaller>=6.7.0", # for compat with setuptools>=70 + "pyinstaller>=6.10.0", # Windows temp cleanup fixed in 6.10.0 ] py2exe = [ "py2exe>=0.12", |