File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 240240
241241html_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" ,
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+
391399html_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.
397410html_use_modindex = True
398411
You can’t perform that action at this time.
0 commit comments