https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 0747542b7b2723499d61cb9b3a87b96aef17b909 authored by Matthew Kolopanis on 05 March 2021, 17:31:55 UTC, committed by Bryna Hazelton on 18 March 2021, 22:57:17 UTC
This reverts commit 95cdfb2c8b250589459a6c3814b95366cd30c108.
1 parent 76f978a
Raw File
Tip revision: 0747542b7b2723499d61cb9b3a87b96aef17b909 authored by Matthew Kolopanis on 05 March 2021, 17:31:55 UTC
Revert "don't redo attribute setting if it already has it"
Tip revision: 0747542
.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