From: Anil Belur Date: Sun, 1 Mar 2020 03:53:55 +0000 (+1000) Subject: Migrate rtd docs to python3 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=39154e4792d9375fd43aad3e8f765cfddcb82fa2;p=docs.git Migrate rtd docs to python3 RTD builds have been failing on python2 since the required version sphinx is not found in lftools-conf. Moving to python3 resolves the issue. Change-Id: I667f613a9b52cc2422e09c55202ad8c829164450 Signed-off-by: Anil Belur --- diff --git a/.readthedocs.yml b/.readthedocs.yml index c131166d5..5ff506fb9 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,8 +1,14 @@ -formats: - - htmlzip +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details -requirements_file: ci-requirements.txt +# Required +version: 2 -build: - image: latest +sphinx: + configuration: docs/conf.py +python: + version: 3.7 + install: + - requirements: docs/requirements.txt