From: Harmon Date: Fri, 25 Feb 2022 20:38:35 +0000 (-0600) Subject: Drop support for Python 3.6 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4b153bf383829fe00ed82deeef930496bcce31af;p=tweepy.git Drop support for Python 3.6 Resolves #1788 --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37610fc..fde7e89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/README.md b/README.md index ded188d..fcb5c76 100644 --- 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 ----- diff --git a/setup.py b/setup.py index b8160a8..9f20c5c 100644 --- 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 da7e81d..7ebebbc 100644 --- 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