From 62a70c21b6c33fd9eec5ec44706e106a80a6d740 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 26 Jan 2024 10:21:34 -0500 Subject: [PATCH] Pin remaining documentation dependencies For some reason the Sphinx developers made breaking changes in minor versions --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index cdc503dd8..ff572400c 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,14 @@ extras_require = { 'docs': [ 'sphinx==4.4.0', 'sphinxcontrib_trio==1.1.2', + # TODO: bump these when migrating to a newer Sphinx version 'sphinxcontrib-websupport==1.2.4', + 'sphinxcontrib-applehelp==1.0.4', + 'sphinxcontrib-devhelp==1.0.2', + 'sphinxcontrib-htmlhelp==2.0.1', + 'sphinxcontrib-jsmath==1.0.1', + 'sphinxcontrib-qthelp==1.0.3', + 'sphinxcontrib-serializinghtml==1.1.5', 'typing-extensions>=4.3,<5', 'sphinx-inline-tabs==2023.4.21', ],