From 25b69f9bac1ac1453bbbc0e318d31b3ded8e1a2f Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:05:36 +0000 Subject: [PATCH 01/11] first attempt --- .readthedocs.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..2664b5bd2 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,29 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + # You can also specify other tool versions: + # nodejs: "19" + # rust: "1.64" + # golang: "1.19" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# If using Sphinx, optionally build your docs in additional formats such as PDF +# formats: +# - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: docs/requirements.txt From 74a43f7898f660b481b990dea4daf114f49d903f Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:10:34 +0000 Subject: [PATCH 02/11] no docs --- .readthedocs.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2664b5bd2..14c9f0ab5 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,14 +16,14 @@ build: # golang: "1.19" # Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/conf.py +#sphinx: +# configuration: docs/conf.py # If using Sphinx, optionally build your docs in additional formats such as PDF # formats: # - pdf # Optionally declare the Python requirements required to build your docs -python: - install: - - requirements: docs/requirements.txt +#python: +# install: +# - requirements: docs/requirements.txt From b5609fd100b6ba2ffa86b1ae3df5006da72e7b94 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:13:28 +0000 Subject: [PATCH 03/11] 3.9 --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 14c9f0ab5..c6f64de96 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.11" + python: "3.9" # You can also specify other tool versions: # nodejs: "19" # rust: "1.64" From c002280aa05b498b24946495b4a9307bf4426d2e Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:15:12 +0000 Subject: [PATCH 04/11] resetting --- .readthedocs.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index c6f64de96..000000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the version of Python and other tools you might need -build: - os: ubuntu-22.04 - tools: - python: "3.9" - # You can also specify other tool versions: - # nodejs: "19" - # rust: "1.64" - # golang: "1.19" - -# Build documentation in the docs/ directory with Sphinx -#sphinx: -# configuration: docs/conf.py - -# If using Sphinx, optionally build your docs in additional formats such as PDF -# formats: -# - pdf - -# Optionally declare the Python requirements required to build your docs -#python: -# install: -# - requirements: docs/requirements.txt From 319c4c6c0fa3ca618904e3fcdd609df7d243bda7 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:17:32 +0000 Subject: [PATCH 05/11] back --- .readthedocs.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..e525ac6cb --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.9" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: readthedocs/conf.py + +# If using Sphinx, optionally build your docs in additional formats such as PDF +# formats: +# - pdf + +# Optionally declare the Python requirements required to build your docs +#python: +# install: +# - requirements: docs/requirements.txt From c6f0395a5631f5eb50e3a3f96e6eab7ba51f9a08 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:20:09 +0000 Subject: [PATCH 06/11] requirements --- .readthedocs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index e525ac6cb..75860c1cc 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -19,6 +19,6 @@ sphinx: # - pdf # Optionally declare the Python requirements required to build your docs -#python: -# install: -# - requirements: docs/requirements.txt +python: + install: + - requirements: readthedocs/requirements.txt From 504ff559c7d5c34f67ed3ba64082325f943f93d0 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:23:36 +0000 Subject: [PATCH 07/11] requirements --- readthedocs/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readthedocs/requirements.txt b/readthedocs/requirements.txt index d134dd60f..0284abdd2 100644 --- a/readthedocs/requirements.txt +++ b/readthedocs/requirements.txt @@ -1 +1,2 @@ -sphinx_mdinclude \ No newline at end of file +sphinx_mdinclude +numpy From 346b2e2fdee45b3240e1a4665295239de1ff7731 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:25:38 +0000 Subject: [PATCH 08/11] requirements --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 75860c1cc..021d965f7 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.11" # Build documentation in the docs/ directory with Sphinx sphinx: From 393d0ac2438913e25e4a0c79a64a7e7a3399e5a1 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:27:49 +0000 Subject: [PATCH 09/11] requirements --- readthedocs/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs/requirements.txt b/readthedocs/requirements.txt index 0284abdd2..56ed913ee 100644 --- a/readthedocs/requirements.txt +++ b/readthedocs/requirements.txt @@ -1,2 +1,3 @@ sphinx_mdinclude numpy +scipy From aa2aabf30f094d8bd9f777e414c77ec28804159b Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:35:27 +0000 Subject: [PATCH 10/11] requirements --- .readthedocs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 021d965f7..e7f76cbab 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -12,6 +12,7 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: + builder: html configuration: readthedocs/conf.py # If using Sphinx, optionally build your docs in additional formats such as PDF From 2543fe9b8484dd97a1c8a0ca286b20057f0865a5 Mon Sep 17 00:00:00 2001 From: David Alonso Date: Wed, 15 Mar 2023 15:37:26 +0000 Subject: [PATCH 11/11] requirements --- readthedocs/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs/requirements.txt b/readthedocs/requirements.txt index 56ed913ee..ac1f0c87f 100644 --- a/readthedocs/requirements.txt +++ b/readthedocs/requirements.txt @@ -1,3 +1,4 @@ +sphinx==3.4.3 sphinx_mdinclude numpy scipy