From 9fe8d29545948eda5402b07a399b9afb70659d3e Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Mon, 3 Feb 2020 17:37:35 +0100 Subject: [PATCH] Dropping Python 2 from setup.py --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b521a6f5..89537bdf 100644 --- a/setup.py +++ b/setup.py @@ -28,12 +28,11 @@ setup( 'cibuildwheel': ['resources/*'], }, # Supported python versions - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', + python_requires='>=3.5', keywords='ci wheel packaging pypi travis appveyor macos linux windows', classifiers=[ 'Intended Audience :: Developers', 'Natural Language :: English', - 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License',