From 87236c1452892d55451149dc8a0fbd386e020631 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 18 May 2021 15:13:15 -0500 Subject: [PATCH] Switch from recommonmark to MyST-Parser for documentation --- docs/conf.py | 2 +- docs/requirements.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 81ac5be..5940584 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ sys.path.append(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 = [ - 'recommonmark', + 'myst_parser', 'sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.napoleon' diff --git a/docs/requirements.txt b/docs/requirements.txt index 60dcaaf..ba36df9 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ -recommonmark==0.7.1 -sphinx==4.0.1 +myst-parser==0.14.0 +sphinx==3.5.4 sphinx_rtd_theme==0.5.2 -- 2.25.1