From 820982d3beb9dac2541a04a31d3e959865dc736e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:01:45 +0000 Subject: [PATCH 1/2] CI: (deps): Bump sphinx from 7.2.6 to 7.3.5 in /ci Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.2.6 to 7.3.5. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v7.2.6...v7.3.5) --- updated-dependencies: - dependency-name: sphinx dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ci/doc_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/doc_requirements.txt b/ci/doc_requirements.txt index 73d0b404d7e..da9f3202289 100644 --- a/ci/doc_requirements.txt +++ b/ci/doc_requirements.txt @@ -1,4 +1,4 @@ -sphinx==7.2.6 +sphinx==7.3.5 pydata-sphinx-theme==0.15.2 sphinx-design==0.5.0 sphinx-gallery==0.15.0 From 577e2aa73a5257ab33e2b71e01f28394b4c01588 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Wed, 17 Apr 2024 14:21:07 -0600 Subject: [PATCH 2/2] MNT: Eliminate non-harmful warning from sphinx-gallery --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 0e495cd33de..f2328251fae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -111,6 +111,11 @@ ('py:class', r'.*D\[k\].*'), # Python dict docstring ] +show_warning_types = True + +# Eliminates unnecessary warning about sphinx-gallery rebuild +suppress_warnings = ['config.cache'] + # Tweak how docs are formatted napoleon_use_rtype = False