From e8848c9701363afbee7d8da6c059adf12a636399 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 21 Aug 2024 14:01:32 +1000 Subject: [PATCH] Natsort is now a dependency. We'll be using it to do better sorting everywhere. --- src/bonsai/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index 3069010a87..af92e11dc1 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -130,6 +130,8 @@ endif cd build && . env/$(VENV_ACTIVATE) && $(PIP) wheel odfpy --wheel-dir=./wheels # Required by IFCCityJSON cd build && . env/$(VENV_ACTIVATE) && $(PIP) download cjio --dest=./wheels + # Required in general for sorting all sorts of stuff in a nice way + cd build && . env/$(VENV_ACTIVATE) && $(PIP) download natsort --dest=./wheels # Provides express rule validation for ifcopenshell.validate cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pytest --dest=./wheels # Provides Brickschema functionality