From a1388d25f82678dc05b45159be08c011d92c7122 Mon Sep 17 00:00:00 2001 From: Norman Valerio Date: Fri, 9 Aug 2024 00:40:47 -0600 Subject: [PATCH] Updating minio to version to 7.2.7 and python supported versions --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 6db59db..3d6d20e 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ url="https://github.com/mmm1513/pyminio", packages=setuptools.find_packages(), install_requires=[ - 'minio <7.0.0, >=6.0.0', + 'minio >=7.2.7', 'pytz', 'cached-property', 'attrdict', @@ -29,10 +29,9 @@ classifiers=[ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8' + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' ], - python_requires='>=3.6', + python_requires='>=3.7', )