From 29e61adf0ca7b6fe3d7ca34749c0549f302973b8 Mon Sep 17 00:00:00 2001 From: Dmytro Popovych Date: Tue, 3 Sep 2019 11:39:35 +0300 Subject: [PATCH] Add read-the-docs config (#73) Our doc requirements aren't compatible with python 3.7. I am going to add this config file to fix current builds and add support of py3.7 later --- .readthedocs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..485163b --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,20 @@ +# .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: + configuration: docs/source/conf.py + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.5 + install: + - requirements: requirements_docs.txt +