From 5ca21f252a4b70795efc0895fbfbd385319223ce Mon Sep 17 00:00:00 2001 From: Philip Hyunsu Cho Date: Mon, 3 Feb 2020 10:38:52 -0800 Subject: [PATCH] Declare Python 3.8 support in setup.py (#5274) --- python-package/setup.py | 3 ++- python-package/setup_pip.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python-package/setup.py b/python-package/setup.py index ac67af1d4..220c238c7 100644 --- a/python-package/setup.py +++ b/python-package/setup.py @@ -62,6 +62,7 @@ setup(name='xgboost', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7'], + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8'], python_requires='>=3.5', url='https://github.com/dmlc/xgboost') diff --git a/python-package/setup_pip.py b/python-package/setup_pip.py index 00be3fcc3..6f584eefc 100644 --- a/python-package/setup_pip.py +++ b/python-package/setup_pip.py @@ -79,6 +79,7 @@ setup(name='xgboost', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7'], + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8'], python_requires='>=3.5', url='https://github.com/dmlc/xgboost')