https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision eb3f1fbcc0345a580fa62f01436f749be143b55a authored by Paul La Plante on 08 October 2022, 23:01:14 UTC, committed by Bryna Hazelton on 10 October 2022, 17:00:28 UTC
1 parent a07564e
Raw File
Tip revision: eb3f1fbcc0345a580fa62f01436f749be143b55a authored by Paul La Plante on 08 October 2022, 23:01:14 UTC
Fix up logic for angle distance calculation
Tip revision: eb3f1fb
.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