swh:1:snp:6b08c94e5bddb0aa0fec78e85d295cc200f59fee
Raw File
Tip revision: ff59e9cffcd7145f0c8c68be3d4e8426348c055e authored by Thomas Robitaille on 11 July 2024, 15:30:20 UTC
Correctly fail CI if asv has any errors (#16705)
Tip revision: ff59e9c
.readthedocs.yaml
version: 2

build:
  os: "ubuntu-22.04"
  tools:
    python: "mambaforge-4.10"
  jobs:
    post_checkout:
      - git fetch --unshallow || true
    pre_install:
      - git update-index --assume-unchanged docs/conf.py docs/rtd_environment.yaml

conda:
  environment: docs/rtd_environment.yaml

sphinx:
  builder: html
  configuration: docs/conf.py
  fail_on_warning: true

# Install regular dependencies.
# Then, install special pinning for RTD.
python:
  install:
    - method: pip
      path: .
      extra_requirements:
        - docs
        - all

# Don't build any extra formats
formats: []
back to top