From 2c350845cd686768e2c1125f26de128cf2254a13 Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Wed, 21 Jan 2026 16:04:49 +0000 Subject: [PATCH 1/2] Attempt to fix python docs to unblock CI Signed-off-by: Adam Gutglick --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 690e2d86726..d8062478215 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ git_root = Path(__file__).parent.parent nitpicky = True # ensures all :class:, :obj:, etc. links are valid -nitpick_ignore = [] +nitpick_ignore = [("py:class", "pandas.core.frame.DataFrame")] doctest_global_setup = "import pyarrow; import vortex; import vortex as vx; import random; random.seed(a=0)" doctest_default_flags = ( From 22d09478c960ce3029cf2aaa2883ccdfb4f2d187 Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Wed, 21 Jan 2026 16:12:39 +0000 Subject: [PATCH 2/2] Pull specific pandas version in docs Signed-off-by: Adam Gutglick --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d8062478215..5b70a079dba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ intersphinx_mapping = { "python": ("https://docs.python.org/3", None), "pyarrow": ("https://arrow.apache.org/docs", None), - "pandas": ("https://pandas.pydata.org/docs", None), + "pandas": ("https://pandas.pydata.org/pandas-docs/version/2.3/", None), "numpy": ("https://numpy.org/doc/stable", None), "polars": ("https://docs.pola.rs/api/python/stable", "polars.objects.inv"), } @@ -50,7 +50,7 @@ git_root = Path(__file__).parent.parent nitpicky = True # ensures all :class:, :obj:, etc. links are valid -nitpick_ignore = [("py:class", "pandas.core.frame.DataFrame")] +nitpick_ignore = [] doctest_global_setup = "import pyarrow; import vortex; import vortex as vx; import random; random.seed(a=0)" doctest_default_flags = (