Skip to content

Commit

Permalink
Work around jQuery removed from Sphinx (fixes #1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed May 2, 2023
1 parent 29bf03e commit 736478a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
}

# Autodoc.
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode", "sphinx.ext.intersphinx"]
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
"sphinxcontrib.jquery"
]
autodoc_member_order = "bysource"
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Sphinx==6.1.2
sphinxcontrib-jquery==4.1

0 comments on commit 736478a

Please sign in to comment.