From 4a34f509fb33f934973eb40df55959c2dc7c4b5d Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Sun, 9 Aug 2020 16:20:44 +0200 Subject: [PATCH] Use m2r2 for now to fix build Until Sphinx upstream moves to a different markdown converter, m2r2 would fix builds. Issue: https://github.com/sphinx-doc/sphinx/issues/7420 See also: https://github.com/miyakogi/m2r/pull/55#issuecomment-657160557 --- .travis.yml | 2 +- conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6d5582..603be00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ python: 3.7 install: - pip install Sphinx - pip install git+https://github.com/bashtage/sphinx-material -- pip install m2r +- pip install m2r2 script: skip deploy: - provider: script diff --git a/conf.py b/conf.py index 4186442..6ce4fdf 100644 --- a/conf.py +++ b/conf.py @@ -29,7 +29,7 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['m2r', 'sphinx_material'] +extensions = ['m2r2', 'sphinx_material'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']