-
Notifications
You must be signed in to change notification settings - Fork 10
/
.readthedocs.yml
44 lines (36 loc) · 1.25 KB
/
.readthedocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Configuration file for building documentation on readthedocs.org
# Ordinarily, Tracktable expects all of its build configuration to be
# done by CMake, including the hassle of filling out paths that are
# only known at runtime.
#
# ReadTheDocs doesn't use CMake. (Thank goodness.) It wants to be
# able to build straight from a newly cloned repository whenever
# possible using settings common to most pure-Python projects.
#
# This file contains configuration options to reach a happy medium.
#
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for
# details.
# Required tag
version: 2
# Build documentation in the Documentation/ directory using Sphinx.
sphinx:
fail_on_warning: false
configuration: tracktable-docs/Documentation/conf.py
# Eventually we will also build docs as PDF and ePub.
# formats: all
# This OS version
build:
os: ubuntu-22.04
# This Conda environment (per the Read The Docs documentation, URL below)
# uses libmamba to handle conda install requests. That should be much,
# much faster than the old version.
tools:
python: "mambaforge-22.9"
# The Anaconda environment to build the docs
conda:
environment: documentation_build_environment.yml
submodules:
include:
- tracktable-docs
recursive: true