Skip to content

Commit ee56af4

Browse files
committed
Fix building the documentation
The support for `Sphinx` version 7 has been implemented in `rdt-themes`, but hasn't yet been released [1]. Currently, the build uses `Sphinx` version 7 which fails with [2]. Use a `Sphinx` version prior to 7 in order to fix that issue. [1] readthedocs/sphinx_rtd_theme#1463 [2] `UndefinedError("'style' is undefined")` Signed-off-by: Frank Viernau <[email protected]>
1 parent 691c55e commit ee56af4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements_builder.ABOUT

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ testing =
8787
pycodestyle
8888

8989
docs =
90-
Sphinx >= 3.3.1
90+
Sphinx >= 3.3.1,<7.0.0
9191
sphinx-rtd-theme >= 0.5.0
9292
doc8 >= 0.8.1

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ testing =
8888
pytest-rerunfailures
8989

9090
docs =
91-
Sphinx >= 3.3.1
91+
Sphinx >= 3.3.1,<7.0.0
9292
sphinx-rtd-theme >= 0.5.0
9393
doc8 >= 0.8.1

0 commit comments

Comments
 (0)