From 3b47d6d123c1ca64bf078e6dc114a7f45d98f441 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 16 Oct 2019 12:35:10 -0500 Subject: [PATCH] Add support for Python 3.8 --- .travis.yml | 1 + README.md | 2 +- setup.py | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) 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 -- 2.25.1