From 9b06aad11d647dc308014e249d4ba721a8293bd4 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Sat, 25 Nov 2023 10:12:32 -0800 Subject: [PATCH] Update rtd yaml file --- .readthedocs.yaml | 25 +++++++++++++++++++++++++ readthedocs.yml | 5 ----- 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 .readthedocs.yaml delete mode 100644 readthedocs.yml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..e9bb045d --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,25 @@ +# .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: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# 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 + +conda: + environment: docs/environment.yml diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index 9d944f16..00000000 --- a/readthedocs.yml +++ /dev/null @@ -1,5 +0,0 @@ -conda: - file: docs/environment.yml -python: - version: 3 - setup_py_install: true