From 84b2cf6db047ba24eef1b107a7b5bafddf801d71 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 22 Jul 2026 18:15:00 +0500 Subject: [PATCH] dev-setup: use Python 3.13 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4a7d22b0f5..fca2913fb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -156,7 +156,8 @@ exclude = [ [tool.poe.tasks] dev-setup.sequence = [ - {cmd = "uv sync"}, + # 3.13 is chosen because it's the version used in the latest Bonsai. + {cmd = "uv sync --python 3.13"}, {cmd = "uv pip install -e ./src/bsdd/"}, {cmd = "uv pip install -e ./src/ifcopenshell-python/[advanced,dev]"}, {cmd = "uv pip install -e ./src/ifcedit/"},