diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-01-12 02:35:00 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-01-15 10:57:21 +0100 |
commit | 8804b276a7ebab31573ecbbf08832a54bdfad48d (patch) | |
tree | ccf06b3bb8f464cd966453dc27f78464c0f330d1 /.readthedocs.yml | |
parent | bba1cc9b8c857855f4db42dc9f92b0f98d78df25 (diff) | |
download | u-boot-8804b276a7ebab31573ecbbf08832a54bdfad48d.zip u-boot-8804b276a7ebab31573ecbbf08832a54bdfad48d.tar.gz u-boot-8804b276a7ebab31573ecbbf08832a54bdfad48d.tar.bz2 |
.readthedocs.yml: update the requirements
Fix an error:
This project needs at least Sphinx v2.4.4.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to '.readthedocs.yml')
-rw-r--r-- | .readthedocs.yml | 15 |
1 files changed, 10 insertions, 5 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 |