From: Harmon Date: Wed, 26 Oct 2022 00:02:58 +0000 (-0500) Subject: Add support for Python 3.11 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a391c66daae3f217585b5da9a9556cb86abe34bd;p=tweepy.git Add support for Python 3.11 --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 238ca3f..1462f51 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.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index fcb5c76..f8478ed 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.7 - 3.10 are supported. +Python 3.7 - 3.11 are supported. Links ----- diff --git a/setup.cfg b/setup.cfg index 13f6ab3..32c3b95 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ omit = */site-packages/* [tox:tox] -envlist = py37, py38, py39, py310 +envlist = py37, py38, py39, py310, py311 [testenv] commands = python -m unittest discover tests diff --git a/setup.py b/setup.py index 4d7c871..422c873 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", ], zip_safe=True,