Skip to content

Commit e4059c8

Browse files
author
Jon Duckworth
authored
Merge pull request #553 from duckontheweb/fix/gh-552-docs-latex-build
Fix docs build, add config
2 parents f443f6a + c3a41ef commit e4059c8

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

.readthedocs.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
version: 2
6+
7+
formats:
8+
# Temporarily disabling PDF downloads due to problem with nbsphinx in LateX builds
9+
# - pdf
10+
- epub
11+
12+
python:
13+
version: "3.7"
14+
install:
15+
- requirements: requirements-docs.txt
16+
- method: pip
17+
path: .
18+
19+
sphinx:
20+
fail_on_warning: false

requirements-dev.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
ipython==7.25.0
2-
Sphinx==4.1.0
3-
sphinxcontrib-fulltoc==1.2.0
4-
nbsphinx==0.8.6
5-
6-
jinja2<4.0
7-
1+
-r ./requirements-docs.txt
82
-r ./requirements-test.txt

requirements-docs.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ipython==7.25.0
2+
Sphinx==4.1.0
3+
sphinxcontrib-fulltoc==1.2.0
4+
nbsphinx==0.8.6
5+
6+
jinja2<4.0

0 commit comments

Comments
 (0)