https://github.com/aiidateam/aiida_core
Raw File
Tip revision: 7b8a400bb9549748171b514a0a2a2e68e177cdac authored by Sebastiaan Huber on 07 December 2020, 18:23:28 UTC
Merge pull request #4620 from ramirezfranciscof/release/v1.5.2
Tip revision: 7b8a400
.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