From 3089a9a8ec8cf18332d3eb58fe3a199587e15182 Mon Sep 17 00:00:00 2001 From: Amanda Park Date: Wed, 10 Mar 2021 16:39:31 -0500 Subject: [PATCH] Update .readthedocs.yml --- .readthedocs.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 1109c8a..d277702 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,9 +1,17 @@ # .readthedocs.yml +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details -build: - image: latest +# Required +version: 1 -python: - version: 3.8 +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py -requirements_file: requirements.txt +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.8 + install: + - requirements: docs/requirements.txt