forked from WenjieDu/PyPOTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.readthedocs.yaml
31 lines (24 loc) · 931 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
31
# This is file is used to help customize PyPOTS documentation building process on ReadTheDocs.
version: 2
formats:
- htmlzip
- pdf
- epub
sphinx:
configuration: docs/conf.py
fail_on_warning: false
build:
os: ubuntu-22.04
tools:
python: "3.10"
jobs:
pre_install:
- python -m pip install --upgrade pip
- pip install torch==1.13.1 -f https://download.pytorch.org/whl/cpu
- pip install torch-geometric torch-scatter torch-sparse -f "https://data.pyg.org/whl/torch-1.13.1+cpu.html"
- pip install pypots
- pip install sphinx==6.2.1 docutils==0.19 sphinxcontrib-bibtex==2.1.4 sphinxcontrib-gtagjs sphinx-autodoc-typehints furo
post_install:
- pip install docutils==0.20
# this version fixes issue#102, put it in post_install to avoid being
# overwritten by other versions (like 0.19) while installing other packages