Skip to content

Commit 1500eac

Browse files
author
xopherw
committed
without template
1 parent 5cea8a0 commit 1500eac

26 files changed

+11
-5422
lines changed

doc/source/conf.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import warnings
2020

2121
import jinja2
22+
from markupsafe import Markup
2223
from numpydoc.docscrape import NumpyDocString
2324
from sphinx.ext.autosummary import _import_by_name
2425

@@ -32,6 +33,9 @@
3233
# Python's default allowed recursion depth is 1000.
3334
sys.setrecursionlimit(5000)
3435

36+
# Disable parallel reading to avoid multiprocessing issues on macOS
37+
parallel_read_safe = False
38+
3539
# If extensions (or modules to document with autodoc) are in another directory,
3640
# add these directories to sys.path here. If the directory is relative to the
3741
# documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -150,7 +154,7 @@
150154
toggleprompt_offset_right = 35
151155

152156
# Add any paths that contain templates here, relative to this directory.
153-
templates_path = ["../_templates"]
157+
# templates_path = ["../_templates"]
154158

155159
# The suffix of source filenames.
156160
source_suffix = [".rst"]
@@ -164,7 +168,7 @@
164168
# General information about the project.
165169
project = "pandas"
166170
# We have our custom "pandas_footer.html" template, using copyright for the current year
167-
copyright = f"{datetime.now().year},"
171+
# copyright = f"{datetime.now().year},"
168172

169173
# The version info for the project you're documenting, acts as replacement for
170174
# |version| and |release|, also used in various other places throughout the
@@ -240,11 +244,14 @@
240244
# only keep major.minor version number to match versions.json
241245
switcher_version = ".".join(version.split(".")[:2])
242246

247+
# Simple copyright text - HTML links are handled in pandas_footer.html template
248+
copyright = Markup(f"{datetime.now().year}, pandas via <a href=\"https://numfocus.org\">NumFOCUS, Inc.</a> Hosted by <a href=\"https://www.ovhcloud.com\">OVHcloud</a>")
249+
243250
html_theme_options = {
244-
"external_links": [],
245-
"footer_start": ["pandas_footer"],
251+
"footer_start": ["copyright"],
246252
"footer_center": ["sphinx-version"],
247253
"footer_end": ["theme-version"],
254+
"external_links": [],
248255
"github_url": "https://github.com/pandas-dev/pandas",
249256
"analytics": {
250257
"plausible_analytics_domain": "pandas.pydata.org",

doc/source/development/community.rst

Lines changed: 0 additions & 123 deletions
This file was deleted.

0 commit comments

Comments
 (0)