From c697cf9b3d274363aebd6ddfcf54755b81ca7580 Mon Sep 17 00:00:00 2001 From: kbonney Date: Mon, 17 Jul 2023 10:36:14 -0400 Subject: [PATCH] Adding config for multiple versions --- documentation/conf.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/documentation/conf.py b/documentation/conf.py index 84fd2bd2a..a9769ef03 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -40,8 +40,21 @@ 'sphinx.ext.autosummary', 'sphinx.ext.napoleon', 'sphinx.ext.intersphinx', + 'sphinx_multiversion', + 'sphinxcontrib.jquery' ] +# html_sidebars = { +# '**': [ +# 'versions.html', +# ], +# } +# Whitelist pattern for tags (set to None to ignore all tags) +smv_tag_whitelist = None + +# Whitelist pattern for branches (set to None to ignore all branches) +smv_branch_whitelist = r'^.*$' + napoleon_use_rtype = False viewcode_import = True numpydoc_show_class_members = True