Merge pull request #240 from DebdootManna/fix-pyminizip-install

Remove broken pyminizip dependency
This commit is contained in:
tisf
2026-07-24 15:11:22 +07:00
committed by GitHub
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -55,7 +55,6 @@ def prepare_file(file_path):
# create ZIP Archive
# we are using 7z because "zipfile" did not support adding a password
# Apparently "pyminizip" works just as well.
print('Info: Creating encrypted ZIP archive')
with pyzipper.AESZipFile(OUTPUT_FOLDER / f'{file_path.name}.zip', 'w', compression=pyzipper.ZIP_LZMA, encryption=pyzipper.WZ_AES) as zip_file:
zip_file.setpassword(COMPRESSION_PASSWORD.encode())
-1
View File
@@ -1,3 +1,2 @@
urllib3
pyminizip
pyzipper
-1
View File
@@ -13,7 +13,6 @@ include_package_data = True
python_requires = >=3.8
install_requires =
urllib3
pyminizip
pyzipper
[options.entry_points]