Add support for Python 3.8
authorHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 17:35:10 +0000 (12:35 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 17:35:10 +0000 (12:35 -0500)
.travis.yml
README.md
setup.py
tox.ini

index 9580c7145bc798bfb3d4dea48614f70594b3b572..9095cf43352ee4500eb1f1b9036648a4bf991705 100644 (file)
@@ -6,6 +6,7 @@ python:
 - '3.5'
 - '3.6'
 - '3.7'
+- '3.8'
 
 matrix:
   fast_finish: true
index 47c09f6e94ff0ce258a932b5af04dbbf583b2922..a176697cc78d9bd957d6cd5b7399389a21dd814e 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.5, 3.6, & 3.7 are supported.
+Python 2.7, 3.5, 3.6, 3.7, & 3.8 are supported.
 
 Community
 ---------
index 4b8e402918fae0cf5bd0c3d778ad4ae182cf76b6..3cf35899ac811a16898b3368be1756e48fe967cd 100644 (file)
--- 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 ba372daf7bad35ce086a1fd3165f8f1383b48580..29e99f64c2f77703565ed4b4e7c37abbe2d2d794 100644 (file)
--- 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