generated from fastai/nbdev_template
-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add to build to readthedocs * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * use python 3.9 in readthedocs.yaml * remove python.version * use python 3.11 * 3.10 * add pyyaml==5.3.1 to docs * add mkdocs.yml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update path --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Jacob Bieker <[email protected]>
- Loading branch information
1 parent
d82dd24
commit 8a0be80
Showing
4 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
version: 2 | ||
mkdocs: {} # tell readthedocs to use mkdocs | ||
python: | ||
version: 3.7 | ||
install: | ||
- method: pip | ||
path: . | ||
- requirements: docs/requirements.txt | ||
|
||
# the build.os and build.tools section is mandatory | ||
build: | ||
os: ubuntu-20.04 # for consistency, matches the one used for CI | ||
tools: | ||
python: "3.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
steps: | ||
- | | ||
pydoc-markdown --build --site-dir "$PWD/_build/html" | ||
pydoc-markdown --build --site-dir "$READTHEDOCS_OUTPUT/html" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
readthedocs-custom-steps==0.5.1 | ||
jinja2<3.1.0 | ||
pydoc-markdown | ||
pyyaml==5.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
site_name: Satip | ||
site_url: https://github.com/openclimatefix/Satip | ||
nav: | ||
- Home: README.md | ||
theme: readthedocs |