Skip to content

Commit b2669be

Browse files
feat: add support for Python 3.11 (GoogleCloudPlatform#577)
1 parent ff98b40 commit b2669be

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: [macos-latest, windows-latest, ubuntu-latest]
35-
python-version: ["3.7", "3.8", "3.9", "3.10"]
35+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
3636
fail-fast: false
3737
permissions:
3838
contents: 'read'
@@ -148,7 +148,7 @@ jobs:
148148
strategy:
149149
matrix:
150150
os: [macos-latest, windows-latest, ubuntu-latest]
151-
python-version: ["3.7", "3.8", "3.9", "3.10"]
151+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
152152
fail-fast: false
153153
permissions:
154154
contents: 'read'

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ def default(session, path):
5959
)
6060

6161

62-
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
62+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
6363
def unit(session):
6464
default(session, os.path.join("tests", "unit"))
6565

6666

67-
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
67+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
6868
def system(session):
6969
default(session, os.path.join("tests", "system"))
7070

7171

72-
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
72+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
7373
def test(session):
7474
default(session, os.path.join("tests", "unit"))
7575
default(session, os.path.join("tests", "system"))

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"Programming Language :: Python :: 3.8",
6969
"Programming Language :: Python :: 3.9",
7070
"Programming Language :: Python :: 3.10",
71+
"Programming Language :: Python :: 3.11",
7172
],
7273
platforms="Posix; MacOS X; Windows",
7374
packages=packages,

0 commit comments

Comments
 (0)