From d8ece32d62346472d226f7eef2999dc568838606 Mon Sep 17 00:00:00 2001 From: falken10vdl <33285113+falken10vdl@users.noreply.github.com> Date: Tue, 11 Nov 2025 23:33:19 +0100 Subject: [PATCH] Add markdown-it-py and mdurl dependencies for drawing module annotations (#7346) --- src/bonsai/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index 9d06991485..6a021cb1a6 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -155,6 +155,9 @@ endif cd build && . env/$(VENV_ACTIVATE) && $(PIP) download six --dest=./wheels # Required by drawing module cd build && . env/$(VENV_ACTIVATE) && $(PIP) download lxml $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels + # Required by drawing module for markdown hyperlinks in annotations + cd build && . env/$(VENV_ACTIVATE) && $(PIP) download markdown-it-py --dest=./wheels + cd build && . env/$(VENV_ACTIVATE) && $(PIP) download mdurl --dest=./wheels # Required by qto and drawing module cd build && . env/$(VENV_ACTIVATE) && $(PIP) download shapely $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels # Required by the BIM type manager thumbnail generator