8000 feat(packaging): add support for Python 3.8 (#569) · akx/google-auth-library-python@1aad54a · GitHub
[go: up one dir, main page]

Skip to content

Commit 1aad54a

Browse files
authored
feat(packaging): add support for Python 3.8 (googleapis#569)
Release-As: 1.20.0 Closes googleapis#568
1 parent 6dd2597 commit 1aad54a

File tree

8 files changed

+10
-1
lines changed

8 files changed

+10
-1
lines changed

docs/reference/google.auth.compute_engine.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ Submodules
1010
----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.auth.compute_engine.credentials

docs/reference/google.auth.crypt.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Submodules
1010
----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.auth.crypt.base
1516
google.auth.crypt.es256

docs/reference/google.auth.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Subpackages
1010
-----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.auth.compute_engine
1516
google.auth.crypt
@@ -19,6 +20,7 @@ Submodules
1920
----------
2021

2122
.. toctree::
23+
:maxdepth: 4
2224

2325
google.auth.app_engine
2426
google.auth.credentials

docs/reference/google.auth.transport.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Submodules
1010
----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.auth.transport.grpc
16+
google.auth.transport.mtls
1517
google.auth.transport.requests
1618
google.auth.transport.urllib3

docs/reference/google.oauth2.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Submodules
1010
----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.oauth2.credentials
1516
google.oauth2.id_token

docs/reference/google.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Subpackages
1010
-----------
1111

1212
.. toctree::
13+
:maxdepth: 4
1314

1415
google.auth
1516
google.oauth2

noxfile.py

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

6666

67-
@nox.session(python=["2.7", "3.5", "3.6", "3.7"])
67+
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
6868
def unit(session):
6969
session.install(*TEST_DEPENDENCIES)
7070
session.install(".")

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"Programming Language :: Python :: 3.5",
5757
"Programming Language :: Python :: 3.6",
5858
"Programming Language :: Python :: 3.7",
59+
"Programming Language :: Python :: 3.8",
5960
"Development Status :: 5 - Production/Stable",
6061
"Intended Audience :: Developers",
6162
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)
0