Skip to content

Commit

Permalink
docs(python): update intersphinx for grpc and auth (#856)
Browse files Browse the repository at this point in the history
* docs(python): update intersphinx for grpc and auth

* use https for python intersphinx

Co-authored-by: Tim Swast <swast@google.com>
  • Loading branch information
busunkim96 and tswast committed Nov 18, 2020
1 parent dc9903a commit 9a7d9fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions synthtool/gcp/templates/python_library/docs/conf.py.j2
Expand Up @@ -345,13 +345,13 @@ texinfo_documents = [

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"python": ("http://python.readthedocs.org/en/latest/", None),
"google-auth": ("https://google-auth.readthedocs.io/en/stable", None),
"python": ("https://python.readthedocs.org/en/latest/", None),
"google-auth": ("https://googleapis.dev/python/google-auth/latest/index.html", None),
"google.api_core": (
"https://googleapis.dev/python/google-api-core/latest/",
None,
),
"grpc": ("https://grpc.io/grpc/python/", None),
"grpc": ("https://grpc.github.io/grpc/python/", None),
"proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None),
{% if intersphinx_dependencies %}
{% for name, url in intersphinx_dependencies.items() %}
Expand Down

0 comments on commit 9a7d9fb

Please sign in to comment.