From 4c0ee4251a464580b7d81d7b8bef843e3e33f42b Mon Sep 17 00:00:00 2001 From: Helen Kershaw <20047007+hkershaw-brown@users.noreply.github.com> Date: Tue, 9 May 2023 16:21:34 -0400 Subject: [PATCH 1/2] fix: add sphinx_rtd_theme to extensions fixes search and flyout menu. See issue #471 for discussion --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index 936109bdc1..71e00839fb 100644 --- a/conf.py +++ b/conf.py @@ -30,6 +30,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + 'sphinx_rtd_theme', 'sphinx.ext.autodoc', 'sphinx.ext.mathjax' ] From d7d6678f604bc4585b4a8eb1e762e6ba5f37cc71 Mon Sep 17 00:00:00 2001 From: Helen Kershaw Date: Wed, 10 May 2023 13:00:17 -0400 Subject: [PATCH 2/2] bump version and changelog for release --- CHANGELOG.rst | 4 ++++ conf.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9d32b0e058..77e0059aff 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,6 +22,10 @@ individual files. The changes are now listed with the most recent at the top. +**May 10 2023 :: Doc-fix. Tag v10.7.2** + +- conf.py changes for latest readthedocs. Fixes search and flyout menu. + **May 8 2023 :: CLM-DART: CAM reanalysis site-level bias correction tool. Tag v10.7.1** - Initial version of bias correction for CAM reanalysis forcing for diff --git a/conf.py b/conf.py index 71e00839fb..e98918a484 100644 --- a/conf.py +++ b/conf.py @@ -21,7 +21,7 @@ author = 'Data Assimilation Research Section' # The full version, including alpha/beta/rc tags -release = '10.7.1' +release = '10.7.2' master_doc = 'README' # -- General configuration ---------------------------------------------------