Skip to content

Commit 968306b

Browse files
authored
feat: add support for Python 3.10 (#882)
1 parent 1027507 commit 968306b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/google-auth/CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A few notes on making changes to ``google-auth-library-python``.
1919
using ``nox -s docgen``.
2020

2121
- The change must work fully on the following CPython versions:
22-
3.6, 3.7, 3.8, 3.9 across macOS, Linux, and Windows.
22+
3.6, 3.7, 3.8, 3.9, 3.10 across macOS, Linux, and Windows.
2323

2424
- The codebase *must* have 100% test statement coverage after each commit.
2525
You can test coverage via ``nox -e cover``.

packages/google-auth/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def blacken(session):
8686
session.run("black", *BLACK_PATHS)
8787

8888

89-
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
89+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
9090
def unit(session):
9191
constraints_path = str(
9292
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"

packages/google-auth/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"Programming Language :: Python :: 3.7",
6464
"Programming Language :: Python :: 3.8",
6565
"Programming Language :: Python :: 3.9",
66+
"Programming Language :: Python :: 3.10",
6667
"Development Status :: 5 - Production/Stable",
6768
"Intended Audience :: Developers",
6869
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)