https://github.com/aiidateam/aiida_core
Raw File
Tip revision: dd6e7a6c59e50de3c5be379c0f1ad9ce90cd0d16 authored by Pranjal Mishra on 11 January 2021, 14:35:26 UTC
Docs: Minor documentation fixes (#4643)
Tip revision: dd6e7a6
.readthedocs.yml
version: 2

# Important: we need to disable all unneeded formats.
# Note that HTML and JSON are always built: https://docs.readthedocs.io/en/latest/yaml-config.html#formats
# Especially, the 'htmlzip' format takes a LOT of memory and causes the build to fail - see our issue #1472:
# https://github.com/aiidateam/aiida-core/issues/1472
formats: []

# Need to install the package itself such that the entry points are installed and the API doc can build properly
python:
    version: 3.8
    install:
        - method: pip
          path: .
          extra_requirements:
            - docs
            - tests

# Let the build fail if there are any warnings
sphinx:
    builder: html
    fail_on_warning: true

search:
  ranking:
    reference/apidoc/*: -7
back to top