-
Notifications
You must be signed in to change notification settings - Fork 5
/
.readthedocs.yml
36 lines (32 loc) · 964 Bytes
/
.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
# .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 OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.12"
rust: "1.75"
jobs:
pre_build:
- set -e && cd examples/ase && bash train.sh
- set -e && cd examples/programmatic/llpr && bash train.sh
- set -e && cd examples/zbl && bash train.sh
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/src/conf.py
fail_on_warning: true
# Declare the Python requirements required to build the docs.
# Additionally, a custom environment variable
# PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
# is declared in the project’s dashboard
python:
install:
- method: pip
path: .
extra_requirements:
- gap
- soap-bpnn
- requirements: docs/requirements.txt