Add support for Python 3.11
authorHarmon <Harmon758@gmail.com>
Wed, 26 Oct 2022 00:02:58 +0000 (19:02 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 26 Oct 2022 00:02:58 +0000 (19:02 -0500)
.github/workflows/test.yml
README.md
setup.cfg
setup.py

index 238ca3f37cbc01ffc59e407e1a32833a3515c72b..1462f5163796565f693f5c4dacfe9116956ea032 100644 (file)
@@ -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
index fcb5c76f6e1ee3a1264dd9be741c3557d5a1fb1d..f8478ed3ab9c04f0796cd673413a2fae988e6e59 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.7 - 3.10 are supported.
+Python 3.7 - 3.11 are supported.
 
 Links
 -----
index 13f6ab3ea1ecbb73340887271f9defe9b3398f74..32c3b95f17e5234882763a8434cbd228e1cc0a4f 100644 (file)
--- 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
index 4d7c871cd3209783f9ec1d37f776fbf36b3093ff..422c87377e538e69dde2813d5fc1d50efc75ac11 100644 (file)
--- 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,