From ea2b54da83bc1042b3a30f736bd2112a20034166 Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Fri, 7 Feb 2025 16:46:43 +0100 Subject: [PATCH] :wrench: Add configuration for readthedocs to make sure the docs are published there --- .readthedocs.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..cf55a07 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +sphinx: + configuration: docs/conf.py + +build: + os: 'ubuntu-20.04' + apt_packages: + - libxml2-dev + - libxmlsec1-dev + - libxmlsec1-openssl + - wget + tools: + python: '3.10' + +python: + install: + - requirements: requirements/dev.txt