From 622907230b37b3fed274b59de31a63dfc8408c42 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:38:56 -0600 Subject: [PATCH 01/10] docs: fix ReadTheDocs documentation --- .readthedocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 9cd4bdfc4..5645e8c4e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,6 +3,7 @@ version: 2 sphinx: configuration: docs-sphinx/conf.py + python: version: 3.7 install: From 2d245ac5e37b15dbf2a6016129e3a80c631ed009 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:44:22 -0600 Subject: [PATCH 02/10] satisfy ReadTheDocs's new 'build.os' requirement --- .readthedocs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 5645e8c4e..c9fa08aba 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,6 +3,8 @@ version: 2 sphinx: configuration: docs-sphinx/conf.py +build: + os: ubuntu-22.04 python: version: 3.7 From a9def9d43087fa81eea9a7bde56a0dc3b36f9d94 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:46:38 -0600 Subject: [PATCH 03/10] satisfy ReadTheDocs's new 'build.tools' requirement --- .readthedocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index c9fa08aba..0633f3bc5 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,6 +5,7 @@ sphinx: build: os: ubuntu-22.04 + tools: python python: version: 3.7 From d163f8178f28e966cd26fe274bc6248718b52e1c Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:48:22 -0600 Subject: [PATCH 04/10] we're specifying the Python version twice? --- .readthedocs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 0633f3bc5..21816c616 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,7 +5,8 @@ sphinx: build: os: ubuntu-22.04 - tools: python + tools: + python: 3.7 python: version: 3.7 From 33be42b3dfb6861be955f00782973b3fde470c9a Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:49:33 -0600 Subject: [PATCH 05/10] does it need quotes? --- .readthedocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 21816c616..a9e0440b6 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,10 +6,10 @@ sphinx: build: os: ubuntu-22.04 tools: - python: 3.7 + python: "3.7" python: - version: 3.7 + version: "3.7" install: - requirements: docs-sphinx/requirements.txt - method: pip From cbb1110725e6247ae766cf8b942162e7dfc14c00 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:50:11 +0000 Subject: [PATCH 06/10] style: pre-commit fixes --- .readthedocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index a9e0440b6..5010f419a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,10 +6,10 @@ sphinx: build: os: ubuntu-22.04 tools: - python: "3.7" + python: '3.7' python: - version: "3.7" + version: '3.7' install: - requirements: docs-sphinx/requirements.txt - method: pip From 070cb8f0014de28f6cba9596e05c7ff3102c940d Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:50:27 -0600 Subject: [PATCH 07/10] no, that information just moved --- .readthedocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index a9e0440b6..a83c4ee58 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,7 +9,6 @@ build: python: "3.7" python: - version: "3.7" install: - requirements: docs-sphinx/requirements.txt - method: pip From 5b6cbe312610b3edbe625c63a0741b77152b42a0 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:51:54 -0600 Subject: [PATCH 08/10] pre-commit --- .readthedocs.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 22225035f..21b515bf1 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,10 +9,6 @@ build: python: '3.7' python: -<<<<<<< HEAD -======= - version: '3.7' ->>>>>>> cbb1110725e6247ae766cf8b942162e7dfc14c00 install: - requirements: docs-sphinx/requirements.txt - method: pip From 027436849139edf6254c6d6e4f06fea0b09bb253 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 11:53:47 -0600 Subject: [PATCH 09/10] awkward requires at least Python 3.8 now --- .readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 21b515bf1..6302ad680 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,7 +6,7 @@ sphinx: build: os: ubuntu-22.04 tools: - python: '3.7' + python: '3.8' python: install: From aa38e6ab6affdc3ce68688ba8eafa7c114aa8f65 Mon Sep 17 00:00:00 2001 From: Jim Pivarski Date: Tue, 16 Jan 2024 12:13:34 -0600 Subject: [PATCH 10/10] https://stackoverflow.com/a/71682736/1623645 --- docs-sphinx/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs-sphinx/requirements.txt b/docs-sphinx/requirements.txt index edca8ad78..bbff055f0 100644 --- a/docs-sphinx/requirements.txt +++ b/docs-sphinx/requirements.txt @@ -1 +1,2 @@ sphinx>=2.4.4 +sphinx-rtd-theme