Skip to content

Commit

Permalink
Add requirements.txt for required python packages
Browse files Browse the repository at this point in the history
Add a file with packages for pip to install to make it easier to
develop documentation and potentially use specific package versions.
  • Loading branch information
laudrup committed Oct 25, 2024
1 parent 7e4ff74 commit c20978d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get -yq install doxygen libboost-dev libssl-dev python3-pip
- name: Install PIP packages
# TODO: Consider using requirements.txt to ensure specific versions are used
run: sudo pip3 install sphinx breathe sphinx_bootstrap_theme sphinx_jinja sphinxcontrib_jquery
run: sudo pip3 install -r doc/requirements.txt
- name: Configure build system
run: mkdir build && cmake -Bbuild -H.
- name: Build documentation
Expand Down
5 changes: 5 additions & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sphinx
breathe
sphinx_bootstrap_theme
sphinx_jinja
sphinxcontrib_jquery

0 comments on commit c20978d

Please sign in to comment.