From 8118218ecc43d763e23c08a1a8809a1455d41710 Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Mon, 21 Jun 2021 22:22:53 +0300 Subject: Unpin pydata sphinx theme and update config. As of v0.6, the pydata-sphinx-theme has a collapsible navigation feature for the sidebar that significantly increases the build time and html file size for the docs. We had originally pinned to 0.5.2 to avoid this, but the feature is now configurable with the collapse_navigation=True value. Remove the upper-bound pinning the theme and instead use the configuration option to keep doc build times reasonable. --- doc/source/conf.py | 1 + 1 file changed, 1 insertion(+) (limited to 'doc/source/conf.py') diff --git a/doc/source/conf.py b/doc/source/conf.py index a49074922..edf937e3c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -164,6 +164,7 @@ html_theme_options = { "logo_link": "index", "github_url": "https://github.com/numpy/numpy", "twitter_url": "https://twitter.com/numpy_team", + "collapse_navigation": True, } -- cgit v1.2.1