swh:1:snp:d4c0192f8a4f34ba8e6a4f1e610fcc1c38681548
Raw File
Tip revision: d08556f053e9df999fd2e8c9972fe093e5474aa8 authored by Bryna Hazelton on 28 July 2021, 16:38:14 UTC
Use environment variable to fix circleci version on forks
Tip revision: d08556f
.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

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