From 26d0fe796754a7efa6de315833e8a840046afad3 Mon Sep 17 00:00:00 2001 From: "Juan M. Cruz-Martinez" Date: Mon, 11 Jul 2022 17:38:38 +0200 Subject: [PATCH] copied rtd from eko --- .readthedocs.yml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 395f725..bf85ae8 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,14 +1,24 @@ +# Read the Docs configuration file +# 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-20.04 # is required: see https://github.com/readthedocs/readthedocs.org/issues/8912 + tools: + python: "3.10" + +# Build documentation in the docs/ directory with Sphinx sphinx: - builder: html - configuration: doc/source/conf.py + configuration: doc/source/conf.py +# Optionally set requirements required to build your docs python: - version: 3.8 - install: - - method: pip - path: . - extra_requirements: - - docs + install: + - method: pip + path: . + extra_requirements: + - docs system_packages: true