https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 9cc16cdfb70b8223bf8e504c67c5550f8196a153 authored by Paul La Plante on 29 April 2020, 00:45:31 UTC, committed by Bryna Hazelton on 29 April 2020, 01:39:33 UTC
1 parent c053c5f
Raw File
Tip revision: 9cc16cdfb70b8223bf8e504c67c5550f8196a153 authored by Paul La Plante on 29 April 2020, 00:45:31 UTC
Remove __future__ imports from all files; add mode: python magic where missing
Tip revision: 9cc16cd
.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