https://github.com/patrickfuchs/buildH/
Raw File
Tip revision: 9f05672515e1cdb0064eeb34f63844296193bc0d authored by patrickfuchs on 01 September 2021, 09:32:15 UTC
Bump version: 1.5.0 → 1.6.0
Tip revision: 9f05672
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

# Build documentation in additional formats such as PDF and ePub
formats:
  - pdf

# Install local package
python:
  install:
    - method: pip
      path: .

# Install conda env with Python version and dependencies
conda:
  environment: binder/environment.yml


# CONDA_USES_MAMBA feature flag uses mamba instead of conda to install dependencies
# https://docs.readthedocs.io/en/stable/guides/feature-flags.html
back to top