From 90e8858fe5faf8011aa2ca84c78067d3ac17945e Mon Sep 17 00:00:00 2001 From: Ioannis Magkanaris Date: Tue, 28 Nov 2023 17:46:22 +0100 Subject: [PATCH 1/2] Trying to install certain docutils version to fix documenation CI --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b3a9b66658..7e02f622d3 100644 --- a/setup.py +++ b/setup.py @@ -127,6 +127,7 @@ def run(self, *args, **kwargs): "sphinxcontrib-htmlhelp<=2.0.0", # After this version it needs a toml file to work, no more setup.py "sphinx<6", "sphinx-rtd-theme", # needs sphinx < 7 + "docutils<=0.20.0", # needed by sphinx ] + install_requirements, install_requires=install_requirements, From 07d89ddfe6f2557d8ba722cdfc0191f89a085e4e Mon Sep 17 00:00:00 2001 From: Ioannis Magkanaris Date: Tue, 28 Nov 2023 17:49:18 +0100 Subject: [PATCH 2/2] Set correct version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7e02f622d3..5059f51502 100644 --- a/setup.py +++ b/setup.py @@ -127,7 +127,7 @@ def run(self, *args, **kwargs): "sphinxcontrib-htmlhelp<=2.0.0", # After this version it needs a toml file to work, no more setup.py "sphinx<6", "sphinx-rtd-theme", # needs sphinx < 7 - "docutils<=0.20.0", # needed by sphinx + "docutils<0.20", # needed by sphinx ] + install_requirements, install_requires=install_requirements,