Skip to content

Commit

Permalink
Merge pull request #12 from antmicro/docs-fix
Browse files Browse the repository at this point in the history
Install pip packages without --user
  • Loading branch information
tgorochowik committed Jul 26, 2023
2 parents e720f6d + ef775a9 commit 120ff00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/latex.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \

cd $(dirname $0)/../../docs

pip3 install --user -r requirements.txt
pip3 install -r requirements.txt

cd build/latex
LATEXMKOPTS='-interaction=nonstopmode' make
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/sphinx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -e

cd $(dirname $0)/../../docs

pip3 install --user -r requirements.txt
pip3 install -r requirements.txt

make html latex

0 comments on commit 120ff00

Please sign in to comment.