Skip to content

Commit

Permalink
Stop using deprecated add_stylesheet in sphinx
Browse files Browse the repository at this point in the history
add_stylesheet has been deprecated for a while.

This should hopefully fix the CI failures in circleci
  • Loading branch information
yuvipanda committed Jun 30, 2021
1 parent ea90ae2 commit 76f55c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@


def setup(app):
app.add_stylesheet("custom.css") # may also be a URL
app.add_css_file("custom.css") # may also be a URL
app.add_config_value(
"recommonmark_config", {"auto_toc_tree_section": "Contents"}, True
)
Expand Down

0 comments on commit 76f55c5

Please sign in to comment.