2023-06-02 22:27:44 -07:00
|
|
|
# Read the Docs configuration file
|
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
|
|
|
|
version: 2
|
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
os: ubuntu-22.04
|
|
|
|
|
tools:
|
2024-11-06 09:31:01 -05:00
|
|
|
python: "3.12"
|
2025-07-28 14:12:46 +01:00
|
|
|
jobs:
|
|
|
|
|
post_checkout:
|
2026-03-11 13:53:23 +00:00
|
|
|
# - bash docs/maybe_skip_pr_build.sh
|
2026-02-10 17:34:43 +01:00
|
|
|
- git fetch origin main --unshallow --no-tags --filter=blob:none || true
|
|
|
|
|
pre_create_environment:
|
|
|
|
|
- pip install uv
|
|
|
|
|
create_environment:
|
|
|
|
|
- uv venv $READTHEDOCS_VIRTUALENV_PATH
|
|
|
|
|
install:
|
|
|
|
|
- uv pip install --python $READTHEDOCS_VIRTUALENV_PATH/bin/python --no-cache-dir -r requirements/docs.txt
|
2023-06-02 22:27:44 -07:00
|
|
|
|
2025-05-23 11:09:53 +02:00
|
|
|
mkdocs:
|
|
|
|
|
configuration: mkdocs.yaml
|
2025-09-24 20:30:33 +01:00
|
|
|
fail_on_warning: true
|