From 2ecf644f7d36ff4c43bbc52d6cec599b926716f3 Mon Sep 17 00:00:00 2001 From: sglvladi Date: Tue, 9 May 2023 03:15:51 +0100 Subject: [PATCH 1/2] Fix failing ReadTheDocs builds --- .readthedocs.yml | 7 ++++++- docs/source/conf.py | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index cb62de3..25ede98 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,9 +1,14 @@ version: 2 +formats: all + sphinx: configuration: docs/source/conf.py -formats: all +build: + os: ubuntu-22.04 + tools: + python: "3.11" python: install: diff --git a/docs/source/conf.py b/docs/source/conf.py index a1ae61d..862cb14 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -40,6 +40,7 @@ 'sphinx.ext.mathjax', 'sphinx.ext.autosectionlabel', 'sphinx_gallery.gen_gallery', + "sphinxcontrib.jquery", ] napoleon_google_docstring = False From 18a1062b65296915a4b332f16c4978cb8481c922 Mon Sep 17 00:00:00 2001 From: sglvladi Date: Tue, 9 May 2023 03:21:08 +0100 Subject: [PATCH 2/2] Correct RTD version --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 862cb14..cd131c5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = 'Lyudmil Vladimirov' # The full version, including alpha/beta/rc tags -release = '0.1b1' +release = '1.3' # -- General configuration ---------------------------------------------------