From 73312f8f0f22ff9175a4f5f7db9bb438a496c164 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Thu, 4 Nov 2021 13:20:40 -0500 Subject: [PATCH] docs: use stable URL for pandas intersphinx links (#1048) --- docs/conf.py | 2 +- owlbot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0784da0b2..bb16445ca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -368,7 +368,7 @@ "protobuf": ("https://googleapis.dev/python/protobuf/latest/", None), "dateutil": ("https://dateutil.readthedocs.io/en/latest/", None), "geopandas": ("https://geopandas.org/", None), - "pandas": ("https://pandas.pydata.org/pandas-docs/dev", None), + "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), } diff --git a/owlbot.py b/owlbot.py index f2f8bea54..e6f36905b 100644 --- a/owlbot.py +++ b/owlbot.py @@ -100,7 +100,7 @@ intersphinx_dependencies={ "dateutil": "https://dateutil.readthedocs.io/en/latest/", "geopandas": "https://geopandas.org/", - "pandas": "https://pandas.pydata.org/pandas-docs/dev", + "pandas": "https://pandas.pydata.org/pandas-docs/stable/", }, )