From 07ba483a13a80f8381c5876036100700341237b0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 26 Sep 2025 15:25:39 +0200 Subject: [PATCH] build-all - bump Python version to fix issue cross compiling Not sure which patch version exactly fixed it, but 3.13.6 works. --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index 402f474335..143f243cc5 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -133,7 +133,7 @@ PROJECT_NAME = "IfcOpenShell" USE_CURRENT_PYTHON_VERSION = os.getenv("USE_CURRENT_PYTHON_VERSION") ADD_COMMIT_SHA = os.getenv("ADD_COMMIT_SHA") -PYTHON_VERSIONS = ["3.9.11", "3.10.3", "3.11.8", "3.12.1", "3.13.0"] +PYTHON_VERSIONS = ["3.9.11", "3.10.3", "3.11.8", "3.12.1", "3.13.6"] JSON_VERSION = "3.11.3" OCE_VERSION = "0.18.3" OCCT_VERSION = "7.8.1"