From 0c95e4f50fe0cbbaf53e4cda7598be53520ecfeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Gardfj=C3=A4ll?= Date: Wed, 8 Apr 2020 20:29:29 +0200 Subject: [PATCH] drop support for (now sunset) Python 2 --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0d868fb..031af67 100644 --- a/setup.py +++ b/setup.py @@ -37,8 +37,6 @@ setup(name='garminexport', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -59,7 +57,7 @@ setup(name='garminexport', 'garminexport.cli', ], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4', + python_requires='>=3.5.*, <4', install_requires=requires, test_requires=test_requires, entry_points={