From 0757521d0383448890af754d0e8deb2b05f256f3 Mon Sep 17 00:00:00 2001 From: Eric Holscher <25510+ericholscher@users.noreply.github.com> Date: Mon, 12 Jul 2021 16:08:53 -0700 Subject: [PATCH] Fix release of Sphinx by forcing upgrades to dependencies This fixes #9434, and should probably go into a new 4.1.1 release --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 206ff4ad490..243ed097d8f 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,12 @@ sys.exit(1) install_requires = [ - 'sphinxcontrib-applehelp', - 'sphinxcontrib-devhelp', - 'sphinxcontrib-jsmath', - 'sphinxcontrib-htmlhelp', - 'sphinxcontrib-serializinghtml', - 'sphinxcontrib-qthelp', + 'sphinxcontrib-applehelp>=1.0.2', + 'sphinxcontrib-devhelp>=1.0.2', + 'sphinxcontrib-jsmath>=1.0.1', + 'sphinxcontrib-htmlhelp>=2.0.0', + 'sphinxcontrib-serializinghtml>=1.1.5', + 'sphinxcontrib-qthelp>=1.0.3', 'Jinja2>=2.3', 'Pygments>=2.0', 'docutils>=0.14,<0.18',