1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2026-01-31 02:57:15 +00:00

[build] Optional dependencies cleanup (#9550)

Authored by: bashonly
This commit is contained in:
bashonly
2024-03-29 18:24:40 -05:00
committed by GitHub
parent cb61e20c26
commit 58dd0f8d1e
3 changed files with 27 additions and 24 deletions

View File

@@ -69,8 +69,10 @@ dev = [
"isort",
"pytest",
]
pyinstaller = ["pyinstaller>=6.3"]
pyinstaller_macos = ["pyinstaller==5.13.2"] # needed for curl_cffi builds
pyinstaller = [
"pyinstaller>=6.3; sys_platform!='darwin'",
"pyinstaller==5.13.2; sys_platform=='darwin'", # needed for curl_cffi
]
py2exe = ["py2exe>=0.12"]
[project.urls]