From 2494d63f36eba0e1811f05e7b2136f8b30f7cdb7 Mon Sep 17 00:00:00 2001 From: Milas Bowman Date: Thu, 18 Aug 2022 17:03:32 -0400 Subject: [PATCH] docs: install package in ReadTheDocs build (#3032) Need to install ourselves so that we can introspect on version using `setuptools_scm` in `docs/conf.py`. Signed-off-by: Milas Bowman --- .readthedocs.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 464c78260..80000ee7f 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,11 +4,14 @@ sphinx: configuration: docs/conf.py build: - os: ubuntu-20.04 - tools: - python: '3.10' + os: ubuntu-20.04 + tools: + python: '3.10' python: install: - requirements: docs-requirements.txt - - requirements: requirements.txt + - method: pip + path: . + extra_requirements: + - ssh