From 8804b276a7ebab31573ecbbf08832a54bdfad48d Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Wed, 12 Jan 2022 02:35:00 +0100 Subject: [PATCH] .readthedocs.yml: update the requirements Fix an error: This project needs at least Sphinx v2.4.4. Signed-off-by: Heinrich Schuchardt --- .readthedocs.yml | 15 ++++++++++----- doc/sphinx/requirements.txt | 6 +++--- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 44949ea..7c6c255 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,6 +5,13 @@ # Required version: 2 +build: + os: "ubuntu-20.04" + apt_packages: + - python3-six + tools: + python: "3.9" + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/conf.py @@ -12,8 +19,6 @@ sphinx: # Optionally build your docs in additional formats such as PDF and ePub formats: [] -# Optionally set the version of Python and requirements required to build your docs -# python: -# version: 3.7 -# install: -# - requirements: docs/requirements.txt +python: + install: + - requirements: doc/sphinx/requirements.txt diff --git a/doc/sphinx/requirements.txt b/doc/sphinx/requirements.txt index 4555a94..44c1878 100644 --- a/doc/sphinx/requirements.txt +++ b/doc/sphinx/requirements.txt @@ -1,4 +1,4 @@ docutils==0.16 -Sphinx==3.4.3 -sphinx_rtd_theme -six +sphinx==3.4.3 +sphinx_rtd_theme==1.0.0 +six==1.16.0 -- 2.7.4