From ffe9045fc8bdb435c02054336c79670ed61704a1 Mon Sep 17 00:00:00 2001 From: Maxim Martynov Date: Fri, 14 Jun 2024 19:03:53 +0300 Subject: [PATCH] Don't install package on Python below 3.8 (#1417) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6f6963eab..358569c32 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ long_description_content_type="text/markdown", package_dir={"minio": "minio"}, packages=["minio", "minio.credentials"], + python_requires=">3.8", install_requires=["certifi", "urllib3", "argon2-cffi", "pycryptodome", "typing-extensions"], tests_require=[],