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 240
240
241
241
html_theme_options = {
242
242
"external_links" : [],
243
- "footer_start" : ["pandas_footer" , " sphinx-version" ],
243
+ "footer_start" : ["sphinx-version" ], # Remove "pandas_footer"
244
244
"github_url" : "https://github.com/pandas-dev/pandas" ,
245
245
"analytics" : {
246
246
"plausible_analytics_domain" : "pandas.pydata.org" ,
388
388
"""
389
389
390
390
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
+
391
399
html_context = {
392
400
"redirects" : dict (moved_api_pages ),
393
401
"header" : header ,
402
+ "footer" : footer , # Add footer here
394
403
}
395
404
405
+ # Disable parallel processing to avoid EOFError during builds
406
+ parallel_read_safe = False
407
+ parallel_write_safe = False
408
+
396
409
# If false, no module index is generated.
397
410
html_use_modindex = True
398
411
You can’t perform that action at this time.
0 commit comments