https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 92a1c40c56cf8c154899d6d296e881b47a9b5d1b authored by Bryna Hazelton on 21 July 2021, 22:20:38 UTC, committed by kartographer on 11 August 2021, 15:07:35 UTC
this is breaking tests on the Linux Conda builds and it's not clear we need this level of tolerance.
1 parent d08556f
Raw File
Tip revision: 92a1c40c56cf8c154899d6d296e881b47a9b5d1b authored by Bryna Hazelton on 21 July 2021, 22:20:38 UTC
reduce the tolerance on `real_if_close` to numpy default tolerance
Tip revision: 92a1c40
.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