Skip to content

Commit

Permalink
Fix building the documentation
Browse files Browse the repository at this point in the history
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 <frank_viernau@epam.com>
  • Loading branch information
fviernau committed Sep 25, 2023
1 parent 691c55e commit ee56af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements_builder.ABOUT
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ testing =
pycodestyle

docs =
Sphinx >= 3.3.1
Sphinx >= 3.3.1,<7.0.0
sphinx-rtd-theme >= 0.5.0
doc8 >= 0.8.1
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ testing =
pytest-rerunfailures

docs =
Sphinx >= 3.3.1
Sphinx >= 3.3.1,<7.0.0
sphinx-rtd-theme >= 0.5.0
doc8 >= 0.8.1

0 comments on commit ee56af4

Please sign in to comment.