From d80bb5a9b2c496032195a609edae9f501e6af4d4 Mon Sep 17 00:00:00 2001 From: Steve Jalim Date: Thu, 25 Jan 2024 16:46:38 +0000 Subject: [PATCH] Ensure django-csp is installed for the docs building, because we live-load the version (#206) --- .readthedocs.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f8c5054..9b6cb32 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -12,7 +12,13 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: - configuration: docs/conf.py + configuration: docs/conf.py formats: - - pdf + - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - method: pip + path: . \ No newline at end of file