From 60589be43c5d15d28d4472f1f7eaabaefd692fde Mon Sep 17 00:00:00 2001 From: AN Long Date: Thu, 16 Sep 2021 12:09:51 +0800 Subject: [PATCH 1/2] Add python-requires in setup.py --- python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/setup.py b/python/setup.py index 33d74203c366..971d6f1a9823 100755 --- a/python/setup.py +++ b/python/setup.py @@ -308,4 +308,5 @@ def get_option_from_sys_argv(option_str): }, install_requires=install_requires, ext_modules=ext_module_list, + python_requires='>=3.3', ) From b82f133b4909bb0b6b5b586cf494ba915eaae657 Mon Sep 17 00:00:00 2001 From: AN Long Date: Sat, 18 Sep 2021 11:58:30 +0800 Subject: [PATCH 2/2] Update setup.py --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 971d6f1a9823..e0760f0e0d9f 100755 --- a/python/setup.py +++ b/python/setup.py @@ -308,5 +308,5 @@ def get_option_from_sys_argv(option_str): }, install_requires=install_requires, ext_modules=ext_module_list, - python_requires='>=3.3', + python_requires='>=3.5', )