Skip to content

Commit bcc507f

Browse files
authored
feat: add support for python 3.10 (googleapis#1557)
1 parent f6c1b94 commit bcc507f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ virtualenv <your-env>
9797

9898
## Supported Python Versions
9999

100-
Python 3.6, 3.7, 3.8, and 3.9 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.
100+
Python 3.6, 3.7, 3.8, 3.9 and 3.10 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.
101101

102102
## Unsupported Python Versions
103103

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def lint(session):
4545
)
4646

4747

48-
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
48+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
4949
@nox.parametrize(
5050
"oauth2client",
5151
[

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"Programming Language :: Python :: 3.7",
7575
"Programming Language :: Python :: 3.8",
7676
"Programming Language :: Python :: 3.9",
77+
"Programming Language :: Python :: 3.10",
7778
"Development Status :: 5 - Production/Stable",
7879
"Intended Audience :: Developers",
7980
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)