Drop support for Python 3.6
authorHarmon <Harmon758@gmail.com>
Fri, 25 Feb 2022 20:38:35 +0000 (14:38 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 25 Feb 2022 20:38:35 +0000 (14:38 -0600)
Resolves #1788

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

index 37610fcdacbd39dd0d957b666bbf0596e69742f3..fde7e8993282aafdde1bdbccee5f95fe8459b3c0 100644 (file)
@@ -7,7 +7,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
+        python-version: ['3.7', '3.8', '3.9', '3.10']
 
     steps:
       - uses: actions/checkout@v2
index ded188d24811670dbe69a30fdb920be5bcd8af9f..fcb5c76f6e1ee3a1264dd9be741c3557d5a1fb1d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ Alternatively, install directly from the GitHub repository:
 
     pip install git+https://github.com/tweepy/tweepy.git
 
-Python 3.6 - 3.10 are supported.
+Python 3.7 - 3.10 are supported.
 
 Links
 -----
index b8160a8e7ec236f9299f2642c5e666d5045063d5..9f20c5c402c8def5c3d06c04f3408e876636a27d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -62,7 +62,6 @@ setup(
         "Operating System :: OS Independent",
         "Programming Language :: Python",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
diff --git a/tox.ini b/tox.ini
index da7e81dc552b46f5bdd24f99669255c7ff9aef21..7ebebbc48826b99294f17d9065531ac31e175252 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, py310
+envlist = py37, py38, py39, py310
 
 [testenv]
 commands = python -m unittest discover tests