swh:1:snp:4dc0bc0115014506f5b8557b9998ca9c88ee7ea5
Raw File
Tip revision: 8e219c67e673251d5dc00a35d21adb7a42fabb82 authored by Theodora Kunicki on 12 October 2022, 21:52:32 UTC
deleted .strip() from read_fhd_call() when reading in antenna names
Tip revision: 8e219c6
.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