forked from ros2/ros2_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring in support for mermaid and move pinning forward (ros2#4151)
* Add mermaid support and update pinned version To get mermaid support working I had to do upgrades. I've updated our pins and documented how they're used as well as how to update them too. This will allow us to do integrated mermaid sequence diagrams as well as flow diagrams instead of committing images of them. * clean up docker installation to focus on pip version pinning * Match folders in ignore too Signed-off-by: Tully Foote <[email protected]> Co-authored-by: Tomoya Fujita <[email protected]>
- Loading branch information
1 parent
1071ace
commit c569b50
Showing
6 changed files
with
66 additions
and
32 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,5 +1,5 @@ | ||
build/ | ||
plugins/__pycache__ | ||
_build/ | ||
.idea/ | ||
.vscode/ | ||
__pycache__ |
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
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
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,35 +1,33 @@ | ||
Jinja2==3.0.3 | ||
MarkupSafe==2.0.1 | ||
Pygments==2.11.2 | ||
alabaster==0.7.12 | ||
babel==2.8.0 | ||
Babel==2.14.0 | ||
certifi==2020.6.20 | ||
chardet==4.0.0 | ||
doc8==1.1.1 | ||
docutils==0.20.1 | ||
idna==2.10 | ||
imagesize==1.3.0 | ||
importlib-metadata==4.6.4 | ||
more-itertools==8.10.0 | ||
Jinja2==3.0.3 | ||
MarkupSafe==2.0.1 | ||
packaging==21.3 | ||
pbr==5.8.0 | ||
pip==22.0.2 | ||
Pygments==2.17.2 | ||
pyparsing==2.4.7 | ||
pytz==2022.1 | ||
requests==2.25.1 | ||
restructuredtext-lint==1.3.2 | ||
roman==3.3 | ||
setuptools==59.6.0 | ||
six==1.16.0 | ||
restructuredtext_lint==1.3.2 | ||
snowballstemmer==2.2.0 | ||
Sphinx==4.3.2 | ||
sphinx-copybutton==0.4.0 | ||
Sphinx==7.2.6 | ||
sphinx-copybutton==0.5.2 | ||
sphinx-multiversion==0.2.4 | ||
sphinx-rtd-theme==1.0.0 | ||
sphinx-tabs==3.2.0 | ||
sphinx-rtd-theme==2.0.0 | ||
sphinx-tabs==3.4.5 | ||
sphinxcontrib-applehelp==1.0.4 | ||
sphinxcontrib-devhelp==1.0.2 | ||
sphinxcontrib-htmlhelp==2.0.1 | ||
sphinxcontrib-jquery==4.1 | ||
sphinxcontrib-jsmath==1.0.1 | ||
sphinxcontrib-mermaid==0.9.2 | ||
sphinxcontrib-qthelp==1.0.3 | ||
sphinxcontrib-serializinghtml==1.1.5 | ||
sphinxcontrib-serializinghtml==1.1.10 | ||
stevedore==3.5.0 | ||
urllib3==1.26.5 | ||
wheel==0.37.1 | ||
zipp==1.0.0 |
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
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,9 @@ | ||
doc8 | ||
docutils | ||
pip==22.0.2 | ||
sphinx==4.3.2 | ||
sphinx-copybutton==0.4.0 | ||
sphinx-multiversion==0.2.4 | ||
sphinx-rtd-theme==1.0.0 | ||
sphinx-tabs==3.2.0 | ||
pip | ||
sphinx | ||
sphinx-copybutton | ||
sphinx-multiversion | ||
sphinx-rtd-theme | ||
sphinx-tabs | ||
sphinxcontrib-mermaid |