From c2eed9fb5940f56e16f3ad46851703d3bf4c3ab3 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Mon, 9 Dec 2024 01:34:43 +0100 Subject: [PATCH] Add a readthedocs configuration file Used for building docs in CI pipelines. --- .readthedocs.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..3652d5e --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,12 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.9" + +python: + install: + - method: pip + path: . + - requirements: docs-requirements.txt