Add support for Python 3.9
authorHarmon <Harmon758@gmail.com>
Thu, 24 Dec 2020 08:07:07 +0000 (02:07 -0600)
committerHarmon <Harmon758@gmail.com>
Thu, 24 Dec 2020 08:07:07 +0000 (02:07 -0600)
.github/workflows/test.yml
README.md
setup.py
tox.ini

index fd72afb9ac39784fa2179e0cd7e6412a4406567f..df6bfcbe4052a198d8908407e20248016c421169 100644 (file)
@@ -7,7 +7,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
+        python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
 
     steps:
       - uses: actions/checkout@v2
index 0383737d1aeb06940d4e7b6055af3e693544659f..90d5b5c3e56c52c58e460baf9434146bf74c75e3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Alternatively, install directly from the GitHub repository:
 
     pip install git+https://github.com/tweepy/tweepy.git
 
-Python 2.7, 3.5, 3.6, 3.7, & 3.8 are supported.
+Python 2.7, 3.5, 3.6, 3.7, 3.8, & 3.9 are supported.
 
 Community
 ---------
index 9491c2ce496bc2bfa018efa13406ae25ab8f9c40..2b0cb1d73ce9b7dba20fbec6a03df1a24e5989e5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -68,6 +68,7 @@ setup(
         "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
+        "Programming Language :: Python :: 3.9",
     ],
     zip_safe=True,
 )
diff --git a/tox.ini b/tox.ini
index 29e99f64c2f77703565ed4b4e7c37abbe2d2d794..3374490afa05047872500335c2004859e3c120c8 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, py38
+envlist = py27, py35, py36, py37, py38, py39
 
 [testenv]
 commands = python setup.py nosetests