fix boto3 error

This commit is contained in:
Nolan Burfield 2025-06-16 16:43:27 -07:00
parent 8c17413af1
commit c768ec509b
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ with open('README.md', 'r') as f:
setup( setup(
name='lib_afr_s3storage', name='lib_afr_s3storage',
version='2.0.0', version='2.0.1',
author='', author='',
author_email='', author_email='',
description='', description='',
@ -20,7 +20,7 @@ setup(
packages=find_packages(), packages=find_packages(),
python_requires='>=3.7', python_requires='>=3.7',
install_requires=[ install_requires=[
'boto3==1.38.35', 'boto3==1.35.95',
'smart-open==7.1.0', 'smart-open==7.1.0',
], ],
) )