From 73278d09abb1a18e506e0c6ccfa68a30aa55a201 Mon Sep 17 00:00:00 2001 From: Hippalectryon Date: Fri, 19 Jul 2024 18:32:41 +0200 Subject: [PATCH 1/5] bump rtd python --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 5d06926..9e87d68 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -3,7 +3,7 @@ version: 2 build: os: "ubuntu-22.04" tools: - python: "3.11" + python: "3.12" jobs: post_install: - pip install poetry From e456a12f4879adadfbc1e03079c7e93ed1f7165f Mon Sep 17 00:00:00 2001 From: Hippalectryon Date: Fri, 19 Jul 2024 18:36:47 +0200 Subject: [PATCH 2/5] force ipython install --- readthedocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs.yml b/readthedocs.yml index 9e87d68..7d82ba5 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -9,5 +9,6 @@ build: - pip install poetry - poetry config virtualenvs.create false - poetry install + - pip install ipython sphinx: configuration: source/conf.py From b0fc4bcd9537588a821938a20ff7da85c37069af Mon Sep 17 00:00:00 2001 From: Hippalectryon Date: Fri, 19 Jul 2024 18:42:18 +0200 Subject: [PATCH 3/5] force myst_parser install --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 7d82ba5..1cdd81c 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -9,6 +9,6 @@ build: - pip install poetry - poetry config virtualenvs.create false - poetry install - - pip install ipython + - pip install ipython myst_parser sphinx: configuration: source/conf.py From 7f262de7f9a1a12d9f7850b3c335ab0b62ec703c Mon Sep 17 00:00:00 2001 From: Hippalectryon Date: Fri, 19 Jul 2024 18:55:17 +0200 Subject: [PATCH 4/5] force sphinx-rtd-theme install --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 1cdd81c..5b3428f 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -9,6 +9,6 @@ build: - pip install poetry - poetry config virtualenvs.create false - poetry install - - pip install ipython myst_parser + - pip install ipython myst_parser sphinx-rtd-theme sphinx: configuration: source/conf.py From c1c28ae3d54b1b99accfa50188e6ad4a5631fea1 Mon Sep 17 00:00:00 2001 From: Hippalectryon Date: Fri, 19 Jul 2024 19:09:49 +0200 Subject: [PATCH 5/5] fix --- readthedocs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readthedocs.yml b/readthedocs.yml index 5b3428f..6d0e9e9 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -7,8 +7,8 @@ build: jobs: post_install: - pip install poetry - - poetry config virtualenvs.create false - - poetry install - - pip install ipython myst_parser sphinx-rtd-theme + - python -m pip install --upgrade --no-cache-dir pip setuptools + - python -m pip install --upgrade --no-cache-dir sphinx readthedocs-sphinx-ext + - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install sphinx: configuration: source/conf.py