https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 6208e657e7dc492314f33aa0c3249ccfaf59459f authored by Bryna Hazelton on 16 December 2020, 19:09:46 UTC, committed by Matthew Kolopanis on 05 January 2021, 19:31:13 UTC
1 parent f9ff13d
Raw File
Tip revision: 6208e657e7dc492314f33aa0c3249ccfaf59459f authored by Bryna Hazelton on 16 December 2020, 19:09:46 UTC
fix python version passing in workflow
Tip revision: 6208e65
.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