diff options
author | coletdev <coletdjnz@protonmail.com> | 2022-03-23 12:26:55 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 16:26:55 -0700 |
commit | d5820461e85a9d3d0b2a019f988d4469bfbcc3ee (patch) | |
tree | ac01dbd3fa5a9d577450bfc48b99e623fa7058f4 /pyinst.py | |
parent | 8a23db95197282159efe970ca0ac69c97def60d3 (diff) |
Use certificates from `certifi` if installed (#3115)
Fixes #3102 and most `CERTIFICATE_VERIFY_FAILED` issues
Authored by: coletdjnz
Diffstat (limited to 'pyinst.py')
-rw-r--r-- | pyinst.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ def version_to_list(version): def dependency_options(): - dependencies = [pycryptodome_module(), 'mutagen', 'brotli'] + collect_submodules('websockets') + dependencies = [pycryptodome_module(), 'mutagen', 'brotli', 'certifi'] + collect_submodules('websockets') excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc'] yield from (f'--hidden-import={module}' for module in dependencies) |