From: Harmon Date: Fri, 21 Jun 2019 19:22:45 +0000 (-0500) Subject: Exclude Python 3.4 from setup python_requires X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ccee031da083424b994a3f47472aa0faf20d69b0;p=tweepy.git Exclude Python 3.4 from setup python_requires --- diff --git a/setup.py b/setup.py index 823739e..e2c3601 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup(name="tweepy", "six>=1.10.0", ], keywords="twitter library", - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Topic :: Software Development :: Libraries',