forked from single-cell-data/TileDB-SOMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.readthedocs.yml
45 lines (34 loc) · 1.2 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
45
# ================================================================
# The main branch is not published to readthedocs at present.
# We only publish from main-old for now (2022-09-26).
# ================================================================
# Note: builds at
# https://readthedocs.com/projects/tiledb-inc-tiledb-soma/builds/
# (permissioned)
# Don't build any extra formats
formats: []
# Use RTD config version 2
# https://docs.readthedocs.io/en/stable/config-file/v2.html
version: 2
sphinx:
configuration: doc/source/conf.py
# python:
# version: 3.8
# install:
# # this order is important: we need to get cmake
# - requirements: doc/requirements_doc.txt
# - method: setuptools
# path: .
build:
os: "ubuntu-22.04"
tools:
python: "3.10"
commands:
# Sandbox alert: `pip install -e .` will _not_ let python find the tiledbsoma package
# within sphinx build
- python -m pip install --upgrade pip
- python -m pip install -r doc/requirements_doc.txt
- python -m pip install -v apis/python
- python scripts/show-versions.py
- sphinx-build --version
- sphinx-build -T -E -b html -d _readthedocs/doctrees -D language=en doc/source _readthedocs/html