-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Organize file to match template on readthedocs.io See https://docs.readthedocs.io/en/stable/config-file/index.html * Remove obsolete system_packages key * Add news fragment
- Loading branch information
Showing
2 changed files
with
11 additions
and
12 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,25 +1,21 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
jobs: | ||
pre_build: | ||
- sphinx-apidoc -e -force --no-toc --module-first -o docs/source/api babelizer | ||
|
||
sphinx: | ||
builder: html | ||
configuration: docs/source/conf.py | ||
fail_on_warning: false | ||
|
||
formats: | ||
- htmlzip | ||
|
||
python: | ||
install: | ||
- requirements: requirements-docs.txt | ||
- requirements: requirements.txt | ||
- method: pip | ||
path: . | ||
system_packages: false | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.9" | ||
jobs: | ||
pre_build: | ||
- sphinx-apidoc -e -force --no-toc --module-first -o docs/source/api babelizer |
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,3 @@ | ||
|
||
Removed the the now-obsolete `system_packages` configuration key that was | ||
causing builds to fail on rtfd.io. |