https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 328a34a28e732364ba89f65d8629a04015621f84 authored by pre-commit-ci[bot] on 04 July 2022, 22:28:29 UTC, committed by Bryna Hazelton on 05 July 2022, 20:04:17 UTC
updates:
- [github.com/psf/black: 22.3.0 → 22.6.0](https://github.com/psf/black/compare/22.3.0...22.6.0)
1 parent ec4fc07
Raw File
Tip revision: 328a34a28e732364ba89f65d8629a04015621f84 authored by pre-commit-ci[bot] on 04 July 2022, 22:28:29 UTC
[pre-commit.ci] pre-commit autoupdate
Tip revision: 328a34a
.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.8
  install:
    - method: pip
      path: .
      extra_requirements:
         - doc
    - requirements: docs/requirements.txt
back to top