From ff9a3757e99c7e5c15b048d617111a168f49b483 Mon Sep 17 00:00:00 2001 From: Pascal Date: Mon, 17 Nov 2025 12:10:51 +0100 Subject: [PATCH 1/2] Added readthedocs config. --- .readthedocs.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..6e6a6e1 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,23 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version, and other tools you might need +build: + os: ubuntu-24.04 + tools: + python: "3.11" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/source/conf.py + + +# Optionally, but recommended, +# declare the Python requirements required to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: docs/requirements.txt From 39d74a26612fc6fb935ae88e91d272a6d03a7335 Mon Sep 17 00:00:00 2001 From: Pascal Date: Mon, 17 Nov 2025 12:48:14 +0100 Subject: [PATCH 2/2] Fix transcripts requirements from ssh to https. --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 9983273..b2a79d9 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -12,5 +12,5 @@ python-dateutil==2.9.0.post0 pytz==2025.2 six==1.17.0 tqdm==4.67.1 -transcripts18xx @ git+ssh://git@github.com/codePascal/transcripts18xx.git@3791b52af834205e350b26f1cf42dbbf3475df9c +transcripts18xx @ git+https://git@github.com/codePascal/transcripts18xx.git@3791b52af834205e350b26f1cf42dbbf3475df9c tzdata==2025.2 \ No newline at end of file