Skip to content

Commit

Permalink
chore: install pip and wheel in docs env
Browse files Browse the repository at this point in the history
This is so python-apt gets built correctly.
  • Loading branch information
tigarmo committed May 31, 2024
1 parent e825299 commit 6c50067
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ help:
install:
@echo "... setting up virtualenv"
python3 -m venv env
. $(VENV); pip install --upgrade -r ../requirements-doc.txt -r ../requirements-jammy.txt
. $(VENV); pip install --upgrade pip
. $(VENV); pip install --upgrade wheel -r ../requirements-jammy.txt -r ../requirements-doc.txt

run:
. $(VENV); sphinx-autobuild --ignore ".git/*" --ignore "*.scss" -c . -b dirhtml "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) --host 0.0.0.0 --port $(PORT)
Expand Down

0 comments on commit 6c50067

Please sign in to comment.