From 0d0bffe1edae8e7066be5d2d52935c2efdec4aaa Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Mon, 20 Nov 2023 19:32:34 -0800 Subject: [PATCH] Use requirements.txt in readthedocs config (#387) --- .readthedocs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d9ee7902..80e38133 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -15,8 +15,8 @@ build: sphinx: configuration: docs/conf.py -# We recommend specifying your dependencies to enable reproducible builds: +# Explicitly set the version of Python and its requirements # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt \ No newline at end of file +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file