From a35c608ffaa4e8fdd3de0beb07a9d4876ec89c8f Mon Sep 17 00:00:00 2001 From: Facundo Tuesca Date: Tue, 3 Oct 2023 12:58:54 +0200 Subject: [PATCH] Migrate .readthedocs.yml to use build.os (#1258) Since build.image is being deprecated[0], this changes the config to use the new format. [0]: https://blog.readthedocs.com/use-build-os-config/ --- .readthedocs.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index e97b9f81a..4e174984e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,12 +1,9 @@ version: 2 build: - image: "7.0" - -python: - version: "3" - install: - - method: pip - path: . - extra_requirements: - - docs + os: "ubuntu-22.04" + tools: + python: "3" + jobs: + post_install: + - pip install .[docs]