From e0a3ad8c1e5115c6b40cec2fa1588bba546e8ffd Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 4 May 2019 13:40:34 -0500 Subject: [PATCH] Drop support for Python 3.4 Python 3.4 has now reached its end-of-life and has been retired. https://www.python.org/dev/peps/pep-0429/ --- .travis.yml | 1 - README.md | 2 +- setup.py | 1 - tox.ini | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 076aeb1..952d4dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ cache: pip python: - '2.7' -- '3.4' - '3.5' - '3.6' diff --git a/README.md b/README.md index b995cae..c8847ce 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ GitHub and install it manually: cd tweepy python setup.py install -Python 2.7, 3.4, 3.5, 3.6, & 3.7 are supported. +Python 2.7, 3.5, 3.6, & 3.7 are supported. Community --------- diff --git a/setup.py b/setup.py index a81c235..823739e 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,6 @@ setup(name="tweepy", 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', diff --git a/tox.ini b/tox.ini index 5790f52..18a7a88 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36, py37 +envlist = py27, py35, py36, py37 [base] deps = -- 2.25.1