https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 551d1bfb60f330dff1aac2d4abcea44daaa6ec92 authored by Paul La Plante on 27 December 2022, 20:18:44 UTC, committed by Bryna Hazelton on 03 January 2023, 20:33:26 UTC
1 parent 03c5162
Raw File
Tip revision: 551d1bfb60f330dff1aac2d4abcea44daaa6ec92 authored by Paul La Plante on 27 December 2022, 20:18:44 UTC
Update affiliation
Tip revision: 551d1bf
.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