Revision 73e2d7f7e8f2f0bbd1e3e8d04eb259c0f2725b05 authored by Bryna Hazelton on 26 February 2020, 21:09:03 UTC, committed by Matthew Kolopanis on 28 February 2020, 18:15:44 UTC
1 parent 953e68e
Raw File
.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

# Do not build the docs in additional formats (e.g. PDF and ePub), use default
formats: []

build:
    image: latest

# specify the conda environment yaml to use
conda:
  environment: ci/rtd_env.yml

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.7
  install:
    - method: pip
      path: .
back to top