Skip to content

Commit 76f55c5

Browse files
committed
Stop using deprecated add_stylesheet in sphinx
add_stylesheet has been deprecated for a while. This should hopefully fix the CI failures in circleci
1 parent ea90ae2 commit 76f55c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848

4949
def setup(app):
50-
app.add_stylesheet("custom.css") # may also be a URL
50+
app.add_css_file("custom.css") # may also be a URL
5151
app.add_config_value(
5252
"recommonmark_config", {"auto_toc_tree_section": "Contents"}, True
5353
)

0 commit comments

Comments
 (0)