Skip to content

Commit 5f50894

Browse files
committed
fix
1 parent da4c196 commit 5f50894

2 files changed

Lines changed: 3012 additions & 1 deletion

File tree

docs/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@
5656
git_root = Path(__file__).parent.parent
5757

5858
nitpicky = True # ensures all :class:, :obj:, etc. links are valid
59-
nitpick_ignore = []
59+
nitpick_ignore = [
60+
# pandas.pydata.org is frequently unreachable; allow these to degrade gracefully.
61+
("py:class", "pandas.DataFrame"),
62+
("py:class", "pandas.ArrowDtype"),
63+
]
6064

6165
doctest_global_setup = "import pyarrow; import vortex; import vortex as vx; import random; random.seed(a=0)"
6266
doctest_default_flags = (

0 commit comments

Comments
 (0)