From 4f9abd7469a2bc8d3f460fe6a517770e218156f1 Mon Sep 17 00:00:00 2001 From: Andrei Jiroh Halili Date: Tue, 12 Sep 2023 21:01:25 +0800 Subject: [PATCH] ci(readthedocs): configure builds for RTD build of project I technically didn't configure things for social previews yet, so fingers closed. Signed-off-by: Andrei Jiroh Halili --- .readthedocs.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..e9a4ae2 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,20 @@ +# Read the Docs configuration file for MkDocs projects +# 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" + nodejs: 18 + +mkdocs: + configuration: mkdocs.yml + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: requirements.txt