From e56d1779e1771c892388ebb7d416cf5a39a77ced Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Mon, 21 Feb 2022 05:46:48 +0800 Subject: [PATCH] Require Python 3.7. (#7682) * Update setup.py. --- python-package/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python-package/setup.py b/python-package/setup.py index d6b310479..648c042b2 100644 --- a/python-package/setup.py +++ b/python-package/setup.py @@ -360,12 +360,11 @@ if __name__ == '__main__': 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10'], - python_requires='>=3.6', + python_requires=">=3.7", url='https://github.com/dmlc/xgboost') clean_up()