File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,11 @@ version: 2
8
8
# Build documentation in the docs/ directory with Sphinx
9
9
sphinx :
10
10
builder : html
11
- configuration : docs/conf.py
11
+ configuration : docs/source/ conf.py
12
12
13
13
# Optionally set the version of Python and requirements required to build your docs
14
14
python :
15
- version : 3.8
15
+ version : 3.7
16
16
install :
17
- - requirements : doc/requirements.txt
17
+ - requirements : docs/requirements.txt
18
+ - requirements : requirements.txt
Original file line number Diff line number Diff line change 3
3
4
4
# You can set these variables from the command line, and also
5
5
# from the environment for the first two.
6
- SPHINXOPTS ?=
6
+ SPHINXOPTS ?= -j auto -WT --keep-going
7
7
SPHINXBUILD ?= sphinx-build
8
8
SOURCEDIR = source
9
9
BUILDDIR = _build
Original file line number Diff line number Diff line change 13
13
import os
14
14
import sys
15
15
16
- sys .path .insert (0 , os .path .abspath ('../../TTS' ))
17
- autodoc_mock_imports = ["tts" ]
16
+ sys .path .insert (0 , os .path .abspath ('../..' ))
17
+
18
+ # mock deps with system level requirements.
19
+ autodoc_mock_imports = ["soundfile" ]
18
20
19
21
# -- Project information -----------------------------------------------------
20
22
project = 'TTS'
Original file line number Diff line number Diff line change 48
48
:maxdepth: 2
49
49
:caption: `vocoder` Models
50
50
51
- main_classes/gan
52
51
```
53
52
You can’t perform that action at this time.
0 commit comments