From 9fc2ab9c997d344486dd27fd79587731c91c218f Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 4 Apr 2021 03:54:00 -0400 Subject: [PATCH] Bump minimum Python version to 3.8 --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index d989aa15c..3c5f94aa6 100644 --- a/setup.py +++ b/setup.py @@ -58,17 +58,15 @@ setup(name='discord.py', include_package_data=True, install_requires=requirements, extras_require=extras_require, - python_requires='>=3.5.3', + python_requires='>=3.8.0', classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Intended Audience :: Developers', 'Natural Language :: English', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Internet', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules',