diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 1c581093..5a6892a3 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -13,9 +13,8 @@ authors = [ ] dependencies = [ - "click-extra[sphinx]==7.15.0", "furo==2025.12.19", - "myst-parser==5.0.0", + "myst-parser @ git+https://github.com/executablebooks/MyST-Parser.git@f153b4b8ae68cbe77b41942147cf5cb6464168f0", "rstcheck[sphinx]==6.2.5", "rstfmt==0.0.14", "Sphinx==9.1.0", diff --git a/docs/source/conf.py b/docs/source/conf.py index ff75fe35..f4cb5455 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -32,7 +32,6 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'click_extra.sphinx', # convert GitHub admonitions to MyST format 'myst_parser', # enable markdown files 'sphinx.ext.autosectionlabel', 'sphinx.ext.todo', # enable to-do sections @@ -42,7 +41,7 @@ # https://myst-parser.readthedocs.io/en/latest/syntax/optional.html myst_enable_extensions = [ - "colon_fence", # Required to render GitHub admonitions + "alert", # convert GitHub admonitions to MyST format ] # Add any paths that contain templates here, relative to this directory.