diff options
author | shirt <2660574+shirt-dev@users.noreply.github.com> | 2021-10-05 13:37:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 13:37:58 -0400 |
commit | f85e6be42ec5e65c07a3f99927ca9dfe81d683f0 (patch) | |
tree | dfccf33023a42bfbe2e419b4249e3bbcb16e4aac /pyinst.py | |
parent | 762e509d91be50546f62fc5c717280839b83c1e2 (diff) | |
download | hypervideo-pre-f85e6be42ec5e65c07a3f99927ca9dfe81d683f0.tar.lz hypervideo-pre-f85e6be42ec5e65c07a3f99927ca9dfe81d683f0.tar.xz hypervideo-pre-f85e6be42ec5e65c07a3f99927ca9dfe81d683f0.zip |
[build] Use pycryptodomex for PyInstaller (#1179)
Diffstat (limited to 'pyinst.py')
-rw-r--r-- | pyinst.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ VERSION_FILE = VSVersionInfo( ] ) -dependancies = ['Crypto', 'mutagen'] + collect_submodules('websockets') +dependancies = ['Cryptodome', 'mutagen'] + collect_submodules('websockets') excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc'] PyInstaller.__main__.run([ |