Skip to content

Commit

Permalink
plugins/Sphinx: Work around Sphinx using new config format
Browse files Browse the repository at this point in the history
Since Sphinx 7.3.0 they use a new toml-based config format for the theme
configuration. See:
sphinx-doc/sphinx#12265

This breaks how the Flamingo Sphinx plugin handles the theme
configuration.

With this change we pin Sphinx to a version <7.3.0 to work around this
issue until we have a proper fix.

Signed-off-by: Chris Fiege <cfi@pengutronix.de>
  • Loading branch information
SmithChart committed Apr 22, 2024
1 parent 21b6a62 commit 9d164d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'coloredlogs',
],
'sphinx-themes': [
'sphinx>=4.5.0',
'sphinx>=4.5.0,<7.3.0',
'sphinx_rtd_theme>=1.0.0',
],
}
Expand Down

0 comments on commit 9d164d0

Please sign in to comment.