From 90fcfa21a918fcae84d809f098c1bff3515f5d53 Mon Sep 17 00:00:00 2001 From: Clea Parcerisas Date: Thu, 10 Aug 2023 09:16:46 +0200 Subject: [PATCH] added readthedocs file --- .readthedocs.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..d543b90 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,27 @@ +# Required +version: 2 +formats: [] + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +build: + os: ubuntu-20.04 + tools: + python: "3.9" + apt_packages: + - libsndfile1-dev + +# Optionally declare the Python requirements required to build your docs + jobs: + post_create_environment: + # Install poetry + # https://python-poetry.org/docs/#installing-manually + - pip install poetry + # Tell poetry to not use a virtual environment + - poetry config virtualenvs.create false + post_install: + # Install dependencies with 'docs' dependency group + # https://python-poetry.org/docs/managing-dependencies/#dependency-groups + - poetry install --with docs