Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit b9dbb21

Browse files
ziegenbergparthea
andauthored
feat: add support for Python 3.11 (#145)
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at> Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 63ca888 commit b9dbb21

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def system(session):
120120
session.run("py.test", "--verbose", system_test_folder_path, *session.posargs)
121121

122122

123-
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
123+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
124124
@nox.parametrize(
125125
"library",
126126
["python-pubsub", "python-texttospeech", "python-speech"],
@@ -160,7 +160,7 @@ def test(session, library):
160160
session.install("psutil")
161161
system(session)
162162

163-
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
163+
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
164164
def tests_local(session):
165165
"""Run tests in this local repo."""
166166
# Install all test dependencies, then install this package in-place.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"Programming Language :: Python :: 3.8",
5656
"Programming Language :: Python :: 3.9",
5757
"Programming Language :: Python :: 3.10",
58+
"Programming Language :: Python :: 3.11",
5859
"Programming Language :: Python :: Implementation :: CPython",
5960
],
6061
description=description,

testing/constraints-3.11.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)