From c88b5c038fc9b7b5901e2c3b67272d59afae46d8 Mon Sep 17 00:00:00 2001 From: Ryan Blakley Date: Mon, 25 Jul 2022 20:58:45 -0400 Subject: [PATCH] fix: Restrict Sphinx's version since it breaks docs build (#3483) * The release of v5.1.0 breaks docs build for a lot of projects apparently according to the issue on their project. So restrict the version to v5.0.2 and below. Signed-off-by: Ryan Blakley --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e14103049e..7827c7d3e6 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ def maybe_require(pkg): docs = set([ 'docutils', - 'Sphinx', + 'Sphinx<=5.0.2', 'nbsphinx', 'sphinx_rtd_theme', 'ipython',