From d5367ddd853075c0829a10a5919db7581635003e Mon Sep 17 00:00:00 2001 From: readthedocs-assistant <96542097+readthedocs-assistant@users.noreply.github.com> Date: Wed, 19 Jan 2022 21:53:23 +0100 Subject: [PATCH] Update Read the Docs configuration (automatic) The following migrators were applied: - Migrate to `build.tools` configuration. This uses the new base Docker image based on Ubuntu 20.04 introduced in October 2021 and picks an appropriate Python version for your project (read [our blog post](https://blog.readthedocs.com/new-build-specification/) for details). Notice that now you can specify the Node.js, Rust, and Go versions as well. *Note:* Some system dependencies are not preinstalled anymore, so this might require manually adding them to `build.apt_packages` (see [our documentation](https://docs.readthedocs.io/en/stable/config-file/v2.html#build-apt-packages>)). - Migrate to Mamba as a drop-in replacement for Conda. Your project requested using Mamba instead of Conda for performance reasons. Now this is included in your configuration and you can change it without our intervention. --- .readthedocs.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 4fc1d8bd..d8600e11 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,13 +1,9 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required version: 2 - -# Build documentation in the docs/ directory with Sphinx +build: + os: ubuntu-20.04 + tools: + python: mambaforge-4.10 sphinx: configuration: docs/conf.py - conda: environment: docs/environment.yml -- GitLab