-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #298 from samdoran/docs/pin-requirements
Add configuration for Read the Docs build and pin docs requirements Due to a recent release of docutils 0.18, our doc build is broken. Add configuration for Read the Docs and pip docs requirements to ensure builds will not spontaneously break in the future. Update tox configuration to match the build done by Read the Docs. Reviewed-by: David Shrewsbury <None> Reviewed-by: None <None>
- Loading branch information
Showing
4 changed files
with
50 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 2 | ||
|
||
formats: | ||
- epub | ||
|
||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: '3.10' | ||
|
||
sphinx: | ||
builder: dirhtml | ||
configuration: docs/conf.py | ||
fail_on_warning: true | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
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 @@ | ||
pbr | ||
sphinx | ||
six |
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,25 @@ | ||
pbr | ||
sphinx | ||
six | ||
alabaster==0.7.12 | ||
Babel==2.9.1 | ||
certifi==2021.10.8 | ||
charset-normalizer==2.0.7 | ||
docutils==0.17.1 | ||
idna==3.3 | ||
imagesize==1.2.0 | ||
Jinja2==3.0.2 | ||
MarkupSafe==2.0.1 | ||
packaging==21.0 | ||
pbr==5.6.0 | ||
Pygments==2.10.0 | ||
pyparsing==3.0.3 | ||
pytz==2021.3 | ||
requests==2.26.0 | ||
six==1.16.0 | ||
snowballstemmer==2.1.0 | ||
Sphinx==4.2.0 | ||
sphinxcontrib-applehelp==1.0.2 | ||
sphinxcontrib-devhelp==1.0.2 | ||
sphinxcontrib-htmlhelp==2.0.0 | ||
sphinxcontrib-jsmath==1.0.1 | ||
sphinxcontrib-qthelp==1.0.3 | ||
sphinxcontrib-serializinghtml==1.1.5 | ||
urllib3==1.26.7 |
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