Skip to content
Snippets Groups Projects
Commit 414a9a74 authored by Dominique Benielli's avatar Dominique Benielli
Browse files

new image python12 and bug fix for all version

parent 2e5a0746
No related branches found
No related tags found
No related merge requests found
Pipeline #16162 passed
...@@ -15,10 +15,6 @@ RUN apt-get update && \ ...@@ -15,10 +15,6 @@ RUN apt-get update && \
libjs-jquery-tablesorter \ libjs-jquery-tablesorter \
texlive-latex-extra \ texlive-latex-extra \
dvipng \ dvipng \
python3-dev \
python3-setuptools \
python3-pip \
python3-wheel \
python3-tk \ python3-tk \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
......
...@@ -156,7 +156,7 @@ def clean_stale_cmake_cache(): ...@@ -156,7 +156,7 @@ def clean_stale_cmake_cache():
recorded_source = os.path.abspath(match.group(1)) recorded_source = os.path.abspath(match.group(1))
actual_source = os.path.abspath(".") actual_source = os.path.abspath(".")
if recorded_source != actual_source: 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.") print("Removing 'build/' to avoid CMake path conflict.")
shutil.rmtree("build", ignore_errors=True) shutil.rmtree("build", ignore_errors=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment