From bdb3960c3f782a038f6e30152a57937393e9858e Mon Sep 17 00:00:00 2001 From: Dylan Verheul Date: Wed, 17 Apr 2024 10:45:37 +0200 Subject: [PATCH] Replace sphinx_mdinclude with MyST (#967) --- .readthedocs.yml => .readthedocs.yaml | 0 docs/conf.py | 2 +- docs/requirements.txt | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename .readthedocs.yml => .readthedocs.yaml (100%) diff --git a/.readthedocs.yml b/.readthedocs.yaml similarity index 100% rename from .readthedocs.yml rename to .readthedocs.yaml diff --git a/docs/conf.py b/docs/conf.py index 46810fd5..25d1e833 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ extensions = [ "sphinx.ext.autodoc", "sphinx.ext.viewcode", - "sphinx_mdinclude", + "myst_parser", ] htmlhelp_basename = f"{project}-doc" diff --git a/docs/requirements.txt b/docs/requirements.txt index cb2e9af4..18d92b37 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ -sphinx>=7.2.6 -sphinx-mdinclude>=0.5.3 +sphinx>=7.3.5 +myst-parser==2.0.0 furo>=2023.05.20