From 95316727f9e0e26ee2de5f760c36e91f2b20693f Mon Sep 17 00:00:00 2001 From: Radomir Stevanovic Date: Thu, 8 Feb 2024 07:52:22 -0800 Subject: [PATCH 1/2] Relax docs build requirements for compatibility --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 19c2587..efa7407 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ -sphinx>=4.0.0,<5.0.0 +sphinx sphinx_rtd_theme recommonmark From 076b2741f3893783844df287ecf33654d2267d77 Mon Sep 17 00:00:00 2001 From: Radomir Stevanovic Date: Thu, 8 Feb 2024 07:53:00 -0800 Subject: [PATCH 2/2] Add RtD build config file --- .readthedocs.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..5517a18 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,16 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +python: + install: + - method: pip + path: . + - requirements: docs/requirements.txt + +sphinx: + builder: html + configuration: docs/conf.py