From 36ecda77bc7d73c8bacd277798fcc257aca80c39 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Thu, 18 Jul 2024 14:19:26 +0100 Subject: [PATCH] docs: Fix issue in readthedocs builds. Somehow due to some dependency conflict resolution the Read The Docs build pipeline ended up installing the rtd sphinx theme with v0.5 instead of a newer version, which was somehow incompatible with the newer sphinx releases. --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 51f9daad0..f6712b3df 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ sphinx<8 -sphinx_rtd_theme<2 +sphinx_rtd_theme>=1,<2