File tree Expand file tree Collapse file tree 4 files changed +33
-17
lines changed Expand file tree Collapse file tree 4 files changed +33
-17
lines changed Original file line number Diff line number Diff line change 12
12
- " docs/**"
13
13
- " examples/**"
14
14
- " .pre-commit-config.yaml"
15
+ - " .readthedocs.yaml"
15
16
push :
16
17
branches :
17
18
- master
23
24
- " docs/**"
24
25
- " examples/**"
25
26
- " .pre-commit-config.yaml"
27
+ - " .readthedocs.yaml"
26
28
27
29
jobs :
28
30
build-test-publish-images :
Original file line number Diff line number Diff line change 5
5
paths :
6
6
- " docs/**"
7
7
- " .github/workflows/sphinx.yml"
8
+ - " .readthedocs.yaml"
8
9
push :
9
10
branches :
10
11
- master
11
12
- main
12
13
paths :
13
14
- " docs/**"
14
15
- " .github/workflows/sphinx.yml"
16
+ - " .readthedocs.yaml"
15
17
16
18
jobs :
17
19
build-docs :
Original file line number Diff line number Diff line change
1
+ ---
2
+ # .readthedocs.yaml
3
+ # Read the Docs configuration file
4
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
5
+
6
+ # Required
7
+ version : 2
8
+
9
+ # Set the version of Python and other tools you might need
10
+ build :
11
+ os : ubuntu-20.04
12
+ tools :
13
+ python : " 3.9"
14
+ # You can also specify other tool versions:
15
+ # nodejs: "16"
16
+ # rust: "1.55"
17
+ # golang: "1.17"
18
+
19
+ # Build documentation in the docs/ directory with Sphinx
20
+ sphinx :
21
+ configuration : docs/conf.py
22
+
23
+ # Optionally build your docs in additional formats such as PDF
24
+ formats : all
25
+
26
+ # Optionally declare the Python requirements required to build your docs
27
+ python :
28
+ install :
29
+ - requirements : requirements-dev.txt
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments