From d0816aed8219e206f7973339a7d71aad9916904f Mon Sep 17 00:00:00 2001 From: Leif Walsh Date: Thu, 21 Dec 2023 03:19:07 +0000 Subject: [PATCH 1/4] add readthedocs config --- .readthedocs.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..4f37b12 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,11 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.9" + sphinx: + configuration: docs/conf.py + python: + install: + - requirements: requirements/docs.txt \ No newline at end of file From ac2e2c961ea15761bc383038451142dcc73c487e Mon Sep 17 00:00:00 2001 From: Leif Walsh Date: Thu, 21 Dec 2023 03:22:56 +0000 Subject: [PATCH 2/4] install subpackages during docs build --- .readthedocs.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 4f37b12..438e5ce 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,4 +8,6 @@ build: configuration: docs/conf.py python: install: - - requirements: requirements/docs.txt \ No newline at end of file + - requirements: requirements/docs.txt + - package: marbles/core + - package: marbles/mixins From 877ae8b6d9dac45358ad854e1703514b4cce522e Mon Sep 17 00:00:00 2001 From: Leif Walsh Date: Thu, 28 Dec 2023 11:12:33 -0500 Subject: [PATCH 3/4] Update .readthedocs.yaml --- .readthedocs.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 438e5ce..17791ac 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -4,10 +4,12 @@ build: os: ubuntu-22.04 tools: python: "3.9" - sphinx: - configuration: docs/conf.py - python: - install: - - requirements: requirements/docs.txt - - package: marbles/core - - package: marbles/mixins + +sphinx: + configuration: docs/conf.py + +python: + install: + - requirements: requirements/docs.txt + - package: marbles/core + - package: marbles/mixins From d9698ec1c71a082c57dfe7c693f41fe4223ff43c Mon Sep 17 00:00:00 2001 From: Leif Walsh Date: Thu, 28 Dec 2023 11:13:19 -0500 Subject: [PATCH 4/4] Update .readthedocs.yaml --- .readthedocs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 17791ac..7bf62c1 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -11,5 +11,5 @@ sphinx: python: install: - requirements: requirements/docs.txt - - package: marbles/core - - package: marbles/mixins + - path: marbles/core + - path: marbles/mixins