From 5663c5442df66e4a8863195466fbdbe901f873a2 Mon Sep 17 00:00:00 2001 From: Bob Fahr <20520336+bfahr@users.noreply.github.com> Date: Thu, 4 Jan 2024 10:33:19 -0600 Subject: [PATCH] Update readthedocs to version 2 (#3986) * RTD requires all projects to move to version 2 * See: https://blog.readthedocs.com/migrate-configuration-v2/ Signed-off-by: Bob Fahr <20520336+bfahr@users.noreply.github.com> --- .readthedocs.yaml | 15 +++++++++++++++ readthedocs.yml | 8 -------- 2 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 .readthedocs.yaml delete mode 100644 readthedocs.yml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..04d86e3930 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,15 @@ +version: 2 + +build: + os: ubuntu-22.04 + apt_packages: + - pandoc + tools: + python: "3.11" + +python: + install: + - method: pip + path: . + extra_requirements: + - docs \ No newline at end of file diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index 98f5864b70..0000000000 --- a/readthedocs.yml +++ /dev/null @@ -1,8 +0,0 @@ -build: - image: latest - -python: - version: 3.6 - pip_install: true - extra_requirements: - - docs