From 9210d9b07f47eeef44b7095cbf21cb546c6c1f37 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Sun, 21 Apr 2024 23:14:22 +0100 Subject: [PATCH] Added RTD configuration file --- .readthedocs.yaml | 19 +++++++++++++++++++ readthedocs.yml | 10 ---------- 2 files changed, 19 insertions(+), 10 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..e4a4ad2e --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,19 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3" + +sphinx: + builder: html + configuration: docs/conf.py + +python: + install: + - method: pip + path: . + extra_requirements: + - docs + +formats: [] diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index d317299a..00000000 --- a/readthedocs.yml +++ /dev/null @@ -1,10 +0,0 @@ -build: - image: latest - -python: - version: 3.6 - pip_install: true - extra_requirements: ['docs'] - -# Don't build any extra formats -formats: []