Skip to content

Commit

Permalink
feat: add support for Python 3.11 (#145)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>

Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
ziegenberg and parthea committed Nov 15, 2022
1 parent 63ca888 commit b9dbb21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -120,7 +120,7 @@ def system(session):
session.run("py.test", "--verbose", system_test_folder_path, *session.posargs)


@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
@nox.parametrize(
"library",
["python-pubsub", "python-texttospeech", "python-speech"],
Expand Down Expand Up @@ -160,7 +160,7 @@ def test(session, library):
session.install("psutil")
system(session)

@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
def tests_local(session):
"""Run tests in this local repo."""
# Install all test dependencies, then install this package in-place.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -55,6 +55,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
],
description=description,
Expand Down
Empty file added testing/constraints-3.11.txt
Empty file.

0 comments on commit b9dbb21

Please sign in to comment.