https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision c019d2b254a1327693466b5d5df3dfa28dc731c0 authored by Bryna Hazelton on 04 March 2020, 17:02:48 UTC, committed by Matthew Kolopanis on 05 March 2020, 15:43:41 UTC
1 parent 8242e23
Raw File
Tip revision: c019d2b254a1327693466b5d5df3dfa28dc731c0 authored by Bryna Hazelton on 04 March 2020, 17:02:48 UTC
try using pip instead of conda on RTD
Tip revision: c019d2b
.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

# specify the conda environment yaml to use
# conda:
#   environment: ci/rtd_env.yml

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.7
  install:
    - method: pip
      path: .
      extra_requirements:
         - docs
back to top