From 76f55c5a253a733caa46ed4aa18c608f8a449c78 Mon Sep 17 00:00:00 2001 From: Yuvi Panda Date: Tue, 29 Jun 2021 15:11:26 +0530 Subject: [PATCH] Stop using deprecated add_stylesheet in sphinx add_stylesheet has been deprecated for a while. This should hopefully fix the CI failures in circleci --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8bb8d4fa9..91bebcc78 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 )