From 414a9a74e37623f948fd95f9af8de9cac5978eea Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Fri, 9 May 2025 14:16:24 +0200 Subject: [PATCH] new image python12 and bug fix for all version --- docker/Dockerfile | 4 ---- setup.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 84129a9..7c010e0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,10 +15,6 @@ RUN apt-get update && \ libjs-jquery-tablesorter \ texlive-latex-extra \ dvipng \ - python3-dev \ - python3-setuptools \ - python3-pip \ - python3-wheel \ python3-tk \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/setup.py b/setup.py index 020992a..b11ac1a 100755 --- a/setup.py +++ b/setup.py @@ -156,7 +156,7 @@ def clean_stale_cmake_cache(): recorded_source = os.path.abspath(match.group(1)) actual_source = os.path.abspath(".") if recorded_source != actual_source: - print(f"🧹 Detected stale CMake cache (was: {recorded_source})") + print("Detected stale CMake cache (was: {})".format(recorded_source)) print("Removing 'build/' to avoid CMake path conflict.") shutil.rmtree("build", ignore_errors=True) -- GitLab