diff --git a/doc/source/conf.py b/doc/source/conf.py index 677ee6274b093..a73764aa6df54 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -240,7 +240,7 @@ html_theme_options = { "external_links": [], - "footer_start": ["pandas_footer", "sphinx-version"], + "footer_start": ["sphinx-version"], # Remove "pandas_footer" "github_url": "https://github.com/pandas-dev/pandas", "analytics": { "plausible_analytics_domain": "pandas.pydata.org", @@ -388,11 +388,24 @@ """ +from datetime import datetime + +footer = f""" +© {datetime.now().year} pandas via +NumFOCUS, Inc. +Hosted by OVHcloud +""" + html_context = { "redirects": dict(moved_api_pages), "header": header, + "footer": footer, # Add footer here } +# Disable parallel processing to avoid EOFError during builds +parallel_read_safe = False +parallel_write_safe = False + # If false, no module index is generated. html_use_modindex = True