From 69c140fd9ddbda64a740d814c0455348f454bd3e Mon Sep 17 00:00:00 2001 From: Jude188 Date: Sun, 15 Dec 2019 13:25:04 +0000 Subject: [PATCH] Drop support for end-of-life Python versions Python versions below 3.5 are now considered end-of-life with 2.7 support being dropped on 1st January 2020 and 3.4 on 3rd March 2019. (https://devguide.python.org/devcycle/#end-of-life-branches) --- .travis.yml | 5 +---- setup.py | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4dbf250..0a166d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,12 @@ --- language: python python: - - "2.7" - - "3.2" + - "3.5" sudo: false matrix: fast_finish: true - allow_failures: - - python: "3.2" script: - py.test diff --git a/setup.py b/setup.py index 4052f9c..d01f75e 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ def readme(): url='https://github.com/tomasbasham/ratelimit', license='MIT', packages=['ratelimit'], + python_requires='>= 3.5', install_requires=[], keywords=[ 'ratelimit',