Skip to content

Commit f965d5f

Browse files
author
Vineeth Sai
committed
DOC: Disable parallel Sphinx builds to avoid EOFError
1 parent 602ae10 commit f965d5f

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

doc/source/conf.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240

241241
html_theme_options = {
242242
"external_links": [],
243-
"footer_start": ["pandas_footer", "sphinx-version"],
243+
"footer_start": ["sphinx-version"], # Remove "pandas_footer"
244244
"github_url": "https://github.com/pandas-dev/pandas",
245245
"analytics": {
246246
"plausible_analytics_domain": "pandas.pydata.org",
@@ -388,11 +388,24 @@
388388
"""
389389

390390

391+
from datetime import datetime
392+
393+
footer = f"""
394+
© {datetime.now().year} pandas via
395+
<a href="https://numfocus.org">NumFOCUS, Inc.</a>
396+
Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>
397+
"""
398+
391399
html_context = {
392400
"redirects": dict(moved_api_pages),
393401
"header": header,
402+
"footer": footer, # Add footer here
394403
}
395404

405+
# Disable parallel processing to avoid EOFError during builds
406+
parallel_read_safe = False
407+
parallel_write_safe = False
408+
396409
# If false, no module index is generated.
397410
html_use_modindex = True
398411

0 commit comments

Comments
 (0)