From b28d651baac065e5411db52d2deaf8b690174123 Mon Sep 17 00:00:00 2001 From: Kimmo Huoman Date: Thu, 5 Dec 2019 18:44:41 +0200 Subject: [PATCH] Drop support for Python 3.4 as well, as it's EOL. --- .travis.yml | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97b7a1b..48719ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "3.4" - "3.5" - "3.6" - "3.7" diff --git a/setup.py b/setup.py index 37348ba..8e32fa0 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ packages=[ 'pycron', ], - python_requires='>=3.4', + python_requires='>=3.5', tests_require=[ "arrow>=0.12.0", "coverage>=4.4.2",