https://github.com/aiidateam/aiida_core
Raw File
Tip revision: 31e981b98506633186518fa91c641b5cc8447316 authored by Sebastiaan Huber on 27 August 2020, 20:24:38 UTC
Merge pull request #4333 from aiidateam/release/1.3.1
Tip revision: 31e981b
.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
back to top