From 8a21637641aae2eb9f259e4eb8cde878c5b8ad8b Mon Sep 17 00:00:00 2001 From: Mohamed Gaber Date: Thu, 17 Aug 2023 19:17:55 +0300 Subject: [PATCH] Pin Sphinx 7.1 (and other versions) (#144) Sphinx 7.2 has a number of breaking changes: https://github.com/sphinx-doc/sphinx/issues/11608 We've been running into one with `furo` specifically, where it thinks we're not using the `furo` CSS. --- requirements_docs.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/requirements_docs.txt b/requirements_docs.txt index 1595715d..0be6630e 100644 --- a/requirements_docs.txt +++ b/requirements_docs.txt @@ -1,8 +1,9 @@ # docs -furo -docutils>=0.17 -sphinx>=4 +furo==2023.7.26 +docutils>=0.17,<1 +sphinx==7.1.* sphinx-autobuild>=2021.3.14 -sphinx-autodoc-typehints -myst-parser>=0.18.0 -docstring-parser \ No newline at end of file +sphinx-autodoc-typehints>=1.24.0 +sphinx-design>=0.5.0,<1 +myst-parser>=2.0.0,<3 +docstring-parser>=0.15,<1 \ No newline at end of file