diff options
author | Lesmiscore <nao20010128@gmail.com> | 2022-08-15 15:43:43 +0900 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-15 13:51:35 +0530 |
commit | 460eb9c50e0970fdceb51485c5fe3268574c48e8 (patch) | |
tree | 27756053e0876ad4917970a700b270a70008216a /pyinst.py | |
parent | 9fd03a16960918187cea826f241620b8c98d34fb (diff) | |
download | hypervideo-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |