branch: elpa/flycheck
commit 860e90cf1abbbdfba36dd80794f5275008e22749
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Fix ReadTheDocs build by installing Python dependencies
The python.install section was commented out, so ReadTheDocs wasn't
installing furo and other dependencies from doc/requirements.txt,
causing the build to fail after the theme switch.
---
.readthedocs.yaml | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
index cfcc33bb15..740b1097dd 100644
--- a/.readthedocs.yaml
+++ b/.readthedocs.yaml
@@ -27,9 +27,8 @@ sphinx:
# - pdf
# - epub
-# Optional but recommended, declare the Python requirements required
-# to build your documentation
+# Declare the Python requirements required to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
-# python:
-# install:
-# - requirements: docs/requirements.txt
+python:
+ install:
+ - requirements: doc/requirements.txt