From 30f293d53b8adf1bd3bb0aeb14e3e1122c47f1cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Sun, 4 Oct 2020 18:19:53 +0200 Subject: [PATCH] Drop support for Python 3.5 It has reached its EOL in September 2020, see https://www.python.org/dev/peps/pep-0478/#release-schedule --- .travis.yml | 1 - setup.py | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 64987897..37a5bf91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python dist: xenial python: - "2.7" - - "3.5" - "3.6" - "3.7.3" - "3.8" diff --git a/setup.py b/setup.py index b912a81f..656c7762 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,9 @@ test_suite="tests", use_2to3=True, requires=['slimit'], - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", + python_requires=( + ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" + ), classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -28,7 +30,6 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 2.7", ], )