swh:1:snp:a44d14bf46f2d71242a54aa79c5374e82bd89434
Raw File
Tip revision: abb645178e2f3e5ac4865ed461ff092db9118728 authored by Bryna Hazelton on 14 March 2023, 22:19:09 UTC
Fix the check if this is a new tag.
Tip revision: abb6451
.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.8
  install:
    - method: pip
      path: .
      extra_requirements:
         - doc
    - requirements: docs/requirements.txt
back to top