aboutsummaryrefslogtreecommitdiffstats
path: root/pyinst.py
diff options
context:
space:
mode:
authorLesmiscore <nao20010128@gmail.com>2022-08-15 15:43:43 +0900
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-08-15 13:51:35 +0530
commit460eb9c50e0970fdceb51485c5fe3268574c48e8 (patch)
tree27756053e0876ad4917970a700b270a70008216a /pyinst.py
parent9fd03a16960918187cea826f241620b8c98d34fb (diff)
downloadhypervideo-pre-460eb9c50e0970fdceb51485c5fe3268574c48e8.tar.lz
hypervideo-pre-460eb9c50e0970fdceb51485c5fe3268574c48e8.tar.xz
hypervideo-pre-460eb9c50e0970fdceb51485c5fe3268574c48e8.zip
[build] Exclude devscripts from installs
Closes #4667
Diffstat (limited to 'pyinst.py')
-rw-r--r--pyinst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyinst.py b/pyinst.py
index 9be5d8960..0b7c66a30 100644
--- a/pyinst.py
+++ b/pyinst.py
@@ -81,7 +81,7 @@ def version_to_list(version):
def dependency_options():
# Due to the current implementation, these are auto-detected, but explicitly add them just in case
dependencies = [pycryptodome_module(), 'mutagen', 'brotli', 'certifi', 'websockets']
- excluded_modules = ['test', 'ytdlp_plugins', 'youtube_dl', 'youtube_dlc']
+ excluded_modules = ('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins', 'devscripts')
yield from (f'--hidden-import={module}' for module in dependencies)
yield '--collect-submodules=websockets'