Skip to content

docs: move to html_css_files as add_stylesheet is deprecated/removed #581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 22, 2022
Merged
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
9 changes: 6 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,12 @@ def _warn_node(self, msg, node, **kwargs):

# Add custom .css files
# https://github.com/snide/sphinx_rtd_theme/issues/117#issuecomment-41571653
def setup(app):
app.add_stylesheet("custom.css")
app.add_stylesheet("rtfd-css.css")
# 2022-06-22: move to `html_css_files` as `add_stylesheet` is deprecated/removed
# https://github.com/sphinx-doc/sphinx/issues/9683#issuecomment-932878909
html_css_files = [
"custom.css",
"rtfd-css.css",
]

# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
Expand Down