8000 chore: add support for python 3.11 (#627) · arpitjain799/twilio-python@85706b3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 85706b3

Browse files
authored
chore: add support for python 3.11 (twilio#627)
1 parent beafdec commit 85706b3

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Origina 8000 l file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 20
1717
strategy:
1818
matrix:
19-
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
19+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
2020
os: [ubuntu-latest]
2121
# Need to pin ubuntu version for python 3.6 (see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877)
2222
# Change this to use ubuntu-latest for all python versions after deprecating python 3.6

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ This library supports the following Python implementations:
2828
* Python 3.8
2929
* Python 3.9
3030
* Python 3.10
31+
* Python 3.11
3132

3233
## Installation
3334

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"Programming Language :: Python :: 3.8",
3939
"Programming Language :: Python :: 3.9",
4040
"Programming Language :: Python :: 3.10",
41+
"Programming Language :: Python :: 3.11",
4142
"Programming Language :: Python :: Implementation :: CPython",
4243
"Topic :: Software Development :: Libraries :: Python Modules",
4344
"Topic :: Communications :: Telephony",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{6,7,8,9}, pypy
2+
envlist = py3{6,7,8,9,10,11}, pypy
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)
0