-
Notifications
You must be signed in to change notification settings - Fork 314
/
.readthedocs.yml
38 lines (33 loc) · 1.12 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
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
# todo: uncomment below if notebooks are to be executed in RTD build
# instead of in CI as currently, requires runtime reduction <15 mins
# jobs:
# post_create_environment:
# # install MODFLOW6 and related executables (notebooks need them)
# - get-modflow :python
# # swap default vtk for vtk-osmesa (avoid PyVista openGL errors)
# # https://github.com/pyvista/pyvista/blob/main/.github/workflows/vtk-pre-test.yml#L53
# - pip uninstall -y vtk
# - pip install --extra-index-url https://wheels.vtk.org trame vtk-osmesa
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: .docs/conf.py
# Build only html and htmlzip (skip others, including PDF and EPUB)
formats:
- htmlzip
# Set the Python version and requirements
python:
install:
- method: pip
path: .
extra_requirements:
- doc