From c05d18e250fb9b3761b33306210f93849d9c5026 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Tue, 28 Jan 2025 11:15:37 +0200
Subject: [PATCH] Workbench: Fix the build.

Use a version of `ruamel.yaml.clib` compatible with Python 3.13.
---
 workbench/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/workbench/Dockerfile b/workbench/Dockerfile
index 49fd584..e218093 100644
--- a/workbench/Dockerfile
+++ b/workbench/Dockerfile
@@ -179,6 +179,7 @@ ENV PIPX_BIN_DIR /opt/pipx/bin
 # hadolint ignore=DL3013
 RUN export PIP_CONSTRAINT=/tmp/constraint.txt && \
     python3 -m pip freeze | grep packaging >> "$PIP_CONSTRAINT" && \
+    echo 'ruamel.yaml.clib>=0.2.12' >> "$PIP_CONSTRAINT" && \
     python3 -m pip install --no-cache-dir --break-system-packages \
         Glances \
         PyGObject \
-- 
GitLab