From 12ffeee49a9cf13002c5828fdb4f2e39f4231334 Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Wed, 21 Apr 2021 15:22:00 +0600 Subject: [PATCH 1/4] Added Required Python Version Added python_requires to specify the required python version for the library. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 69ec098a..3828c72f 100755 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ include_package_data=True, zip_safe=False, license='MPL-2.0', + python_requires=">=3.3", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', From 94f034701247fdf07660af6ec700fd1fed74818a Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Wed, 21 Apr 2021 19:02:44 +0600 Subject: [PATCH 2/4] Updated required python version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3828c72f..c91406c4 100755 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ include_package_data=True, zip_safe=False, license='MPL-2.0', - python_requires=">=3.3", + python_requires=">=3.5", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', From 42f0b3de4ed4d536db4246031879a4583b1532d7 Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Fri, 8 Oct 2021 21:13:00 +0600 Subject: [PATCH 3/4] Removed Classifiers for unsupported python versions --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index c91406c4..3bd18bc3 100755 --- a/setup.py +++ b/setup.py @@ -55,9 +55,6 @@ 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Natural Language :: English', 'Programming Language :: Python', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', From a616491110654e9a8c58506449ebcffd6ceb7122 Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Sat, 9 Oct 2021 00:13:57 +0600 Subject: [PATCH 4/4] Updated --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3bd18bc3..8077e3a9 100755 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Natural Language :: English', 'Programming Language :: Python', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',