From 9930375bd907ea154baa109380810846c2d336e8 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 8 Feb 2024 23:47:42 +0000 Subject: [PATCH] Switch from recommonmark to myst-parser --- .github/workflows/ci.yml | 2 +- doc/conf.py | 2 +- doc/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a11cb51..6b1c9e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: run: | pip install pytest pip install sphinx - pip install recommonmark + pip install myst-parser sudo apt-get install -yy libacl1-dev - name: Build the code diff --git a/doc/conf.py b/doc/conf.py index 1f80083..2489345 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -25,7 +25,7 @@ sys.path.insert(0, os.path.abspath('../')) # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'recommonmark'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'myst_parser'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/doc/requirements.txt b/doc/requirements.txt index 02bf565..f0694bd 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1 +1 @@ -recommonmark +myst-parser -- 2.39.2