Skip to content

Commit

Permalink
Install pip packages without --user
Browse files Browse the repository at this point in the history
The CI runs this in venv and fails with this flag.

Signed-off-by: Tomasz Gorochowik <tgorochowik@antmicro.com>
  • Loading branch information
tgorochowik committed Jul 26, 2023
1 parent e720f6d commit ef775a9
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 ef775a9

Please sign in to comment.