Skip to content

Commit

Permalink
feat(packaging): add support for Python 3.8 (#569)
Browse files Browse the repository at this point in the history
Release-As: 1.20.0

Closes #568
  • Loading branch information
tseaver authored Jul 23, 2020
1 parent 6dd2597 commit 1aad54a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/reference/google.auth.compute_engine.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ Submodules
----------

.. toctree::
:maxdepth: 4

google.auth.compute_engine.credentials
1 change: 1 addition & 0 deletions docs/reference/google.auth.crypt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Submodules
----------

.. toctree::
:maxdepth: 4

google.auth.crypt.base
google.auth.crypt.es256
Expand Down
2 changes: 2 additions & 0 deletions docs/reference/google.auth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Subpackages
-----------

.. toctree::
:maxdepth: 4

google.auth.compute_engine
google.auth.crypt
Expand All @@ -19,6 +20,7 @@ Submodules
----------

.. toctree::
:maxdepth: 4

google.auth.app_engine
google.auth.credentials
Expand Down
2 changes: 2 additions & 0 deletions docs/reference/google.auth.transport.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ Submodules
----------

.. toctree::
:maxdepth: 4

google.auth.transport.grpc
google.auth.transport.mtls
google.auth.transport.requests
google.auth.transport.urllib3
1 change: 1 addition & 0 deletions docs/reference/google.oauth2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Submodules
----------

.. toctree::
:maxdepth: 4

google.oauth2.credentials
google.oauth2.id_token
Expand Down
1 change: 1 addition & 0 deletions docs/reference/google.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Subpackages
-----------

.. toctree::
:maxdepth: 4

google.auth
google.oauth2
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def blacken(session):
session.run("black", *BLACK_PATHS)


@nox.session(python=["2.7", "3.5", "3.6", "3.7"])
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
def unit(session):
session.install(*TEST_DEPENDENCIES)
session.install(".")
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit 1aad54a

Please sign in to comment.