Skip to content

Commit a391c66

Browse files
committed
Add support for Python 3.11
1 parent fb851a0 commit a391c66

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.7', '3.8', '3.9', '3.10']
10+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1111

1212
steps:
1313
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Alternatively, install directly from the GitHub repository:
3636

3737
pip install git+https://github.com/tweepy/tweepy.git
3838

39-
Python 3.7 - 3.10 are supported.
39+
Python 3.7 - 3.11 are supported.
4040

4141
Links
4242
-----

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ omit =
77
*/site-packages/*
88

99
[tox:tox]
10-
envlist = py37, py38, py39, py310
10+
envlist = py37, py38, py39, py310, py311
1111

1212
[testenv]
1313
commands = python -m unittest discover tests

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"Programming Language :: Python :: 3.8",
6666
"Programming Language :: Python :: 3.9",
6767
"Programming Language :: Python :: 3.10",
68+
"Programming Language :: Python :: 3.11",
6869
"Programming Language :: Python :: 3 :: Only",
6970
],
7071
zip_safe=True,

0 commit comments

Comments
 (0)