From e13ba7627aa047f0c2d9c2a07a47a03ec4fb9965 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 28 Jul 2025 13:27:08 +0200 Subject: [PATCH] Rocky8 python3.6 build-all compatibility --- nix/build-all.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/build-all.py b/nix/build-all.py index fdb7917d87..507a273037 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -830,7 +830,7 @@ if "python" in targets and not USE_CURRENT_PYTHON_VERSION and "wasm" not in flag # On OSX a dynamic python library is built or it would not be compatible # with the system python because of some threading initialization - PYTHON_CONFIGURE_ARGS: list[str] = [] + PYTHON_CONFIGURE_ARGS: 'list[str]' = [] if platform.system() == "Darwin": PYTHON_CONFIGURE_ARGS = ["--enable-shared"] @@ -895,8 +895,8 @@ if "boost" in targets: ) if "cgal" in targets: - gmp_args: list[str] = [] - mpfr_args: list[str] = [] + gmp_args: 'list[str]' = [] + mpfr_args: 'list[str]' = [] if "wasm" in flags: gmp_args.extend(("--disable-assembly", "--host", "none", "--enable-cxx")) mpfr_args.extend(("--host", "none"))