Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plugins/Sphinx: Work around Sphinx using new config format #48

Merged
merged 2 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
Changelog
=========

`v1.10.1 <https://github.com/pengutronix/flamingo/compare/v1.10...v1.10.1>`_ (2024-04-23)
-----------------------------------------------------------------------------------------

Changes
~~~~~~~

(none)

Bugfixes
~~~~~~~~

* plugins/Sphinx: Sphinx 7.3.0 has introduced a
`new configuration format <https://github.com/sphinx-doc/sphinx/pull/12265>`__ for themes.
This breaks the way we parse the theme configuration.
For this bugfix release we pin the Sphinx dependency to :code:`<7.3.0` to work around this problem.

`v1.10 <https://github.com/pengutronix/flamingo/compare/v1.9...v1.10>`_ (2024-04-22)
------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion flamingo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

_dirname = os.path.dirname(__file__)

VERSION = (1, 10)
VERSION = (1, 10, 1)
VERSION_STRING = '.'.join([str(i) for i in VERSION])
THEME_ROOT = os.path.join(_dirname, 'theme')
PROJECT_TEMPLATES_ROOT = os.path.join(_dirname, 'project_templates')
Expand Down
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