Drop support for Python 3.4
authorHarmon <Harmon758@gmail.com>
Sat, 4 May 2019 18:40:34 +0000 (13:40 -0500)
committerHarmon <Harmon758@gmail.com>
Sat, 4 May 2019 18:40:34 +0000 (13:40 -0500)
Python 3.4 has now reached its end-of-life and has been retired.
https://www.python.org/dev/peps/pep-0429/

.travis.yml
README.md
setup.py
tox.ini

index 076aeb1bd00c4f69416c55538818d4b0b20f4cde..952d4dcf51aa1e0e19385991cc885f908e1e9a98 100644 (file)
@@ -3,7 +3,6 @@ cache: pip
 
 python:
 - '2.7'
-- '3.4'
 - '3.5'
 - '3.6'
 
index b995cae1cd051a4ca147535976e942580f16f0da..c8847ce60225fef0a1495e7a1405b84b73188e69 100644 (file)
--- 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
 ---------
index a81c235270aaf3a95d2735117b1bee2c963c2cad..823739ee488bc3edd32d74d01b27f87229ad342a 100644 (file)
--- 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 5790f526c8d61a5337a7f76aadef9825a3db0450..18a7a88e98b52dcc1c2880e7440d7dc20ef08486 100644 (file)
--- 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 =