From 9db5341e44831d7d2c023ac9857a584d989fcea5 Mon Sep 17 00:00:00 2001 From: Debdoot Manna <106653463+DebdootManna@users.noreply.github.com> Date: Mon, 15 Jun 2026 12:48:40 +0530 Subject: [PATCH] Remove broken pyminizip dependency --- prep_file.py | 1 - requirements.txt | 1 - setup.cfg | 1 - 3 files changed, 3 deletions(-) diff --git a/prep_file.py b/prep_file.py index 76399c5..b157fb4 100644 --- a/prep_file.py +++ b/prep_file.py @@ -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()) diff --git a/requirements.txt b/requirements.txt index e79ccae..3b0e1bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ urllib3 -pyminizip pyzipper \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 1e229b0..ebe0afe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,7 +13,6 @@ include_package_data = True python_requires = >=3.8 install_requires = urllib3 - pyminizip pyzipper [options.entry_points]