From c768ec509be02518fc1698a8a06952532ca4459a Mon Sep 17 00:00:00 2001 From: Nolan Burfield Date: Mon, 16 Jun 2025 16:43:27 -0700 Subject: [PATCH] fix boto3 error --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2cdd1b7..0504ea0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open('README.md', 'r') as f: setup( name='lib_afr_s3storage', - version='2.0.0', + version='2.0.1', author='', author_email='', description='', @@ -20,7 +20,7 @@ setup( packages=find_packages(), python_requires='>=3.7', install_requires=[ - 'boto3==1.38.35', + 'boto3==1.35.95', 'smart-open==7.1.0', ], )