Skip to content
Draft
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# Undocumented trick: if we def setup here in conf.py, it gets called just
# like an extension's setup function.
def setup(app):
app.add_javascript("show-code.js")
app.add_javascript("facebox.js")
app.add_stylesheet("facebox.css")
app.add_js_file("show-code.js")
app.add_js_file("facebox.js")
app.add_css_file("facebox.css")

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
1 change: 1 addition & 0 deletions newsfragments/200.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix documentation builds with Sphinx 9 and later.