From 455cba441624d699d4ffd05dbfd57f87faf50314 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Wed, 27 Oct 2021 17:02:08 -0500 Subject: [PATCH 1/3] chore: cleanup intersphinx links --- owlbot.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/owlbot.py b/owlbot.py index 86374858e..7629d2c15 100644 --- a/owlbot.py +++ b/owlbot.py @@ -32,8 +32,6 @@ intersphinx_dependencies={ "pandas": "http://pandas.pydata.org/pandas-docs/stable/", "geopandas": "https://geopandas.org/", - "proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None), - "protobuf": ("https://googleapis.dev/python/protobuf/latest/", None), }, ) @@ -55,9 +53,6 @@ ], ) -# Remove unneeded intersphinx links, the library does not use any proto-generated code. -s.replace("docs/conf.py", r'\s+"(proto-plus|protobuf)":.*$', "") - # ---------------------------------------------------------------------------- # Samples templates From f6ae9fb947d522fc9f2e30a1a0c5b5ccc82ca37c Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Wed, 27 Oct 2021 22:05:20 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index fa5217731..3d07b6bf5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -364,10 +364,10 @@ "google-auth": ("https://googleapis.dev/python/google-auth/latest/", None), "google.api_core": ("https://googleapis.dev/python/google-api-core/latest/", None,), "grpc": ("https://grpc.github.io/grpc/python/", None), - "pandas": ("http://pandas.pydata.org/pandas-docs/stable/", None), - "geopandas": ("https://geopandas.org/", None), "proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None), "protobuf": ("https://googleapis.dev/python/protobuf/latest/", None), + "pandas": ("http://pandas.pydata.org/pandas-docs/stable/", None), + "geopandas": ("https://geopandas.org/", None), } From 5ace112a6ba1bd6b912089733e311ef2820d787c Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 1 Nov 2021 10:30:11 -0500 Subject: [PATCH 3/3] use https for pandas docs --- owlbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index 7629d2c15..0463a16a6 100644 --- a/owlbot.py +++ b/owlbot.py @@ -30,7 +30,7 @@ microgenerator=True, split_system_tests=True, intersphinx_dependencies={ - "pandas": "http://pandas.pydata.org/pandas-docs/stable/", + "pandas": "https://pandas.pydata.org/pandas-docs/stable/", "geopandas": "https://geopandas.org/", }, )