From 83845bdd6dfd0493fedd28e2e4f1fccc7d476861 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 26 Feb 2024 13:20:19 +0100 Subject: [PATCH] Disable building 3.6.x - due to from __future__ import annotations --- 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 d632f36d45..b9b017776e 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -76,7 +76,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.6.14", "3.7.13", "3.8.13", "3.9.11", "3.10.3", "3.11.7", "3.12.1"] +PYTHON_VERSIONS = ["3.7.13", "3.8.13", "3.9.11", "3.10.3", "3.11.7", "3.12.1"] JSON_VERSION = "v3.6.1" OCE_VERSION = "0.18.3" OCCT_VERSION = "7.5.3"