Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -388,11 +388,24 @@
"""


from datetime import datetime

footer = f"""
© {datetime.now().year} pandas via
<a href="https://numfocus.org">NumFOCUS, Inc.</a>
Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>
"""

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

Expand Down
Loading