From 73208e45d9ba1302be41d6e4b4b79cffe41e34e6 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 9 Aug 2023 23:57:20 -0500 Subject: [PATCH] docs: Require sphinx-rtd-theme compatible with Sphinx 7 (#2271) * Update lower bound on sphinx-rtd-theme to v1.3.0rc1 to ensure compatibility with Sphinx v7+. - c.f. https://github.com/readthedocs/sphinx_rtd_theme/issues/1463 - As soon as sphinx-rtd-theme v1.3.0 is released on PyPI the lower bound should be updated to reflect this stable release. The release candidate is being used to unbreak CI. * Update lower bound of Sphinx to v7.0.0 for consistency. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b16fdb1440..551c14cd08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -107,10 +107,10 @@ test = [ ] docs = [ "pyhf[xmlio,contrib]", - "sphinx>=5.1.1", # c.f. https://github.com/scikit-hep/pyhf/pull/1926 + "sphinx>=7.0.0", # c.f. https://github.com/scikit-hep/pyhf/pull/2271 "sphinxcontrib-bibtex~=2.1", "sphinx-click", - "sphinx_rtd_theme", + "sphinx-rtd-theme>=1.3.0rc1", # c.f. https://github.com/scikit-hep/pyhf/pull/2271 "nbsphinx!=0.8.8", # c.f. https://github.com/spatialaudio/nbsphinx/issues/620 "ipywidgets", "sphinx-issues",