https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 377b39606cf56cb5c1276c8dc76eb2e710993b35 authored by Alex Foster on 13 November 2020, 07:40:55 UTC, committed by Bryna Hazelton on 07 December 2020, 17:59:47 UTC
as the 8 byte limit does not apply

also places 'required' parameter at the end where other parameters do
1 parent ed344a5
Raw File
Tip revision: 377b39606cf56cb5c1276c8dc76eb2e710993b35 authored by Alex Foster on 13 November 2020, 07:40:55 UTC
remove non-uv5 data type desc for extra_keywords
Tip revision: 377b396
.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