-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
.readthedocs.yml
32 lines (26 loc) · 920 Bytes
/
.readthedocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# .readthedocs.yml
# Read the Docs configuration file
# Details
# - https://docs.readthedocs.io/en/stable/config-file/v2.html
# - https://docs.readthedocs.io/en/stable/build-customization.html#install-dependencies-with-poetry
# Required
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.12"
# https://docs.readthedocs.io/en/stable/build-customization.html#extend-the-build-process
jobs:
post_install:
# setuptools has been downgraded to 58.2.0, so upgrade again.
- pip install --upgrade setuptools
- pip install uv
# Install project's dependencies.
# see https://github.com/python-poetry/poetry/issues/9025
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH .github/workflows/install.sh docs
# Build documentation in the docs/ directory with Sphinx
mkdocs:
configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF
formats:
- pdf