forked from modin-project/unidist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.readthedocs.yaml
30 lines (26 loc) · 884 Bytes
/
.readthedocs.yaml
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
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
build:
os: ubuntu-20.04
tools:
# We use mambaforge to install packages from conda-forge below
python: "mambaforge-22.9"
jobs:
post_create_environment:
# Build unidist to make C++ extensions available and also
# for correct module imports when building the documentation.
- pip install --no-cache-dir -e .
sphinx:
configuration: docs/conf.py
# TODO: Fix #156 and set to true
fail_on_warning: false
formats:
- epub
- pdf
# We use dependencies from conda-forge to have a ready-to-use MPI implementation.
# If we tried to install mpi4py from PyPI, installation would fail because
# mpi4py requires a working MPI implementation installed beforehand.
conda:
environment: environment_linux.yml