From 17595e0d1698000565165e7ed747f79e2976d134 Mon Sep 17 00:00:00 2001 From: Muhammad Imran Zaman Date: Sat, 25 May 2024 14:29:40 +0100 Subject: [PATCH] Added python_requires argument for python version requirements python_requires argument in the setup function specifies the versions of python that package is compatible with like great than 3.7 or any which is required --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 73618b6f..296d7952 100644 --- a/setup.py +++ b/setup.py @@ -70,4 +70,5 @@ long_description=PACKAGE_LONG_DESCRIPTION, install_requires=PACKAGE_INSTALL_REQUIRES, long_description_content_type="text/markdown", + python_requires='>=3.7', )