Commit 7ad73640 authored by nimrod's avatar nimrod
Browse files

Revert "Workbench: Remove the Pyhon packaging constraint."

This reverts commit 86e0e33a.

# Conflicts:
#	workbench/Dockerfile
parent 12dc5adb
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -173,7 +173,9 @@ RUN apt-get update && \
ENV PIPX_HOME /opt/pipx
ENV PIPX_BIN_DIR /opt/pipx/bin
# hadolint ignore=DL3013
RUN python3 -m pip install --no-cache-dir --break-system-packages \
RUN export PIP_CONSTRAINT=/tmp/constraint.txt && \
    echo 'packaging==24.1' >> "$PIP_CONSTRAINT" && \
    python3 -m pip install --no-cache-dir --break-system-packages \
        Glances \
        PyGObject \
        PyMySQL \