Skip to content

Commit

Permalink
feat: add support for python 3.10 (#1557)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Oct 12, 2021
1 parent f6c1b94 commit bcc507f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -97,7 +97,7 @@ virtualenv <your-env>

## Supported Python Versions

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.
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.

## Unsupported Python Versions

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -45,7 +45,7 @@ def lint(session):
)


@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
@nox.parametrize(
"oauth2client",
[
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -74,6 +74,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit bcc507f

Please sign in to comment.