From 632e45af18c9e5c95b96f16ef052a9e8c0b6410f Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 15 Sep 2025 17:29:32 +0500 Subject: [PATCH] Fix missing platform in flask wheels (6497d5f) --- src/bonsai/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index caa7d26da5..ce2a0a8ef4 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -193,7 +193,7 @@ else cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pyradiance $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels endif # Required by ifctester web ui. - cd build && . env/$(VENV_ACTIVATE) && $(PIP) download flask --dest=./wheels + cd build && . env/$(VENV_ACTIVATE) && $(PIP) download flask $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels # jQuery is required for web UI functionality cd build/bonsai/bim/data/webui/static/js/ && wget https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js