From: Harmon Date: Wed, 16 Oct 2019 17:35:10 +0000 (-0500) Subject: Add support for Python 3.8 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3b47d6d123c1ca64bf078e6dc114a7f45d98f441;p=tweepy.git Add support for Python 3.8 --- diff --git a/.travis.yml b/.travis.yml index 9580c71..9095cf4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - '3.5' - '3.6' - '3.7' +- '3.8' matrix: fast_finish: true diff --git a/README.md b/README.md index 47c09f6..a176697 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.5, 3.6, & 3.7 are supported. +Python 2.7, 3.5, 3.6, 3.7, & 3.8 are supported. Community --------- diff --git a/setup.py b/setup.py index 4b8e402..3cf3589 100644 --- a/setup.py +++ b/setup.py @@ -57,5 +57,6 @@ setup(name="tweepy", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], zip_safe=True) diff --git a/tox.ini b/tox.ini index ba372da..29e99f6 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py35, py36, py37 +envlist = py27, py35, py36, py37, py38 [testenv] commands = python setup.py nosetests