From 73b0b0d7099c75fc5ed9a4f46dce4dbf6cacf445 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Wed, 28 Aug 2019 11:44:00 +0100 Subject: [PATCH] readthedocs: Add ReadtheDocs configuration Provide configuration file for building the documentation. We need to specify to use python3 explicitly. --- .readthedocs.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 00000000..e80b499b --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,21 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + builder: html + configuration: doc/source/conf.py + +# Build the docs in additional formats such as PDF and ePub +formats: all + +# Set the version of Python and requirements required to build your docs +python: + version: 3.7 + install: + - method: setuptools + path: .