diff --git a/doc/source/conf.py b/doc/source/conf.py index 951a6d40437868..7f7309bae7031a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -68,7 +68,12 @@ "contributors", # custom pandas extension ] -exclude_patterns = ["**.ipynb_checkpoints"] +exclude_patterns = [ + "**.ipynb_checkpoints", + # to ensure that include files (partial pages) aren't built, exclude them + # https://github.com/sphinx-doc/sphinx/issues/1965#issuecomment-124732907 + "**/includes/**", +] try: import nbconvert except ImportError: diff --git a/doc/source/getting_started/intro_tutorials/02_read_write.rst b/doc/source/getting_started/intro_tutorials/02_read_write.rst index 3457ed142510b7..d69a48def02876 100644 --- a/doc/source/getting_started/intro_tutorials/02_read_write.rst +++ b/doc/source/getting_started/intro_tutorials/02_read_write.rst @@ -17,7 +17,7 @@