From 460eb9c50e0970fdceb51485c5fe3268574c48e8 Mon Sep 17 00:00:00 2001 From: Lesmiscore Date: Mon, 15 Aug 2022 15:43:43 +0900 Subject: [build] Exclude devscripts from installs Closes #4667 --- pyinst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyinst.py') 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' -- cgit v1.2.3