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 1212 - " docs/**"
1313 - " examples/**"
1414 - " .pre-commit-config.yaml"
15+ - " .readthedocs.yaml"
1516 push :
1617 branches :
1718 - master
2324 - " docs/**"
2425 - " examples/**"
2526 - " .pre-commit-config.yaml"
27+ - " .readthedocs.yaml"
2628
2729jobs :
2830 build-test-publish-images :
Original file line number Diff line number Diff line change 55 paths :
66 - " docs/**"
77 - " .github/workflows/sphinx.yml"
8+ - " .readthedocs.yaml"
89 push :
910 branches :
1011 - master
1112 - main
1213 paths :
1314 - " docs/**"
1415 - " .github/workflows/sphinx.yml"
16+ - " .readthedocs.yaml"
1517
1618jobs :
1719 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