From 52d260353e35f7b5ebb1bd287ee70e74cf68b48b Mon Sep 17 00:00:00 2001 From: Penny How Date: Tue, 3 Oct 2023 15:12:31 -0200 Subject: [PATCH] updated to v2 compatibility --- .readthedocs.yaml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 1c91d6fb..ef8d4509 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,9 +1,22 @@ -# File .readthedocs.yaml +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +# Required +version: 2 + +# Set the version of Python and other tools you might need build: - image: latest + os: ubuntu-22.04 + tools: + python: "3.11" -python: - version: 3.8 +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py -requirements_file: docs/requirements.txt +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: + install: + - requirements: docs/requirements.txt