Add support for Python 3.10
authorHarmon <Harmon758@gmail.com>
Tue, 5 Oct 2021 18:18:41 +0000 (13:18 -0500)
committerHarmon <Harmon758@gmail.com>
Tue, 5 Oct 2021 18:18:41 +0000 (13:18 -0500)
This also updates the minimum dev requirement version for tox from 2.4.0 to 3.14.0 to support specifying Python 3.10 for tox

.github/workflows/test.yml
README.md
setup.py
tox.ini

index 789a4ff9acc775c816e545e98da0c06f4310e969..37610fcdacbd39dd0d957b666bbf0596e69742f3 100644 (file)
@@ -7,7 +7,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [3.6, 3.7, 3.8, 3.9]
+        python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
 
     steps:
       - uses: actions/checkout@v2
index c621ebdc4311f7569f724f652297ed64f2972bb0..9deb19150132dbe390faba8cc660a55da3b4cdaa 100644 (file)
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ Alternatively, install directly from the GitHub repository:
 
     pip install git+https://github.com/tweepy/tweepy.git
 
-Python 3.6 - 3.9 are supported.
+Python 3.6 - 3.10 are supported.
 
 Links
 -----
index f0827d13752b1bef841855901d62008eefc01b1c..6457d4f7f66fc6d1c29e702793671f1b335dbad8 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@ setup(
         ],
         "dev": [
             "coveralls>=2.1.0",
-            "tox>=2.4.0",
+            "tox>=3.14.0",
          ],
         "socks": ["requests[socks]>=2.11.1,<3"],
         "test": tests_require,
@@ -68,6 +68,7 @@ setup(
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
+        "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3 :: Only",
     ],
     zip_safe=True,
diff --git a/tox.ini b/tox.ini
index 0999171147b1618750331b09bf5699b1d285cc4d..da7e81dc552b46f5bdd24f99669255c7ff9aef21 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
 # and then run "tox" from this directory.
 
 [tox]
-envlist = py36, py37, py38, py39
+envlist = py36, py37, py38, py39, py310
 
 [testenv]
 commands = python -m unittest discover tests