From 1d3889c1221e39180c91e43be9805d88225850bd Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Tue, 28 Jan 2025 20:51:02 +0200
Subject: [PATCH] Workbench: Remove contraints for pipx installations.

They're only there to fix the system Python package installation. The
pipx installations use a separate virtualenv so there's no need for them
(and it's breaking the AWS CLI v2 installation with Python 3.13 it
seems).
---
 workbench/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/workbench/Dockerfile b/workbench/Dockerfile
index e218093..bb7af37 100644
--- a/workbench/Dockerfile
+++ b/workbench/Dockerfile
@@ -249,6 +249,7 @@ RUN export PIP_CONSTRAINT=/tmp/constraint.txt && \
         transmission-rpc \
         ziglang \
     && \
+    unset PIP_CONSTRAINT && \
     pipx install chalice && \
     pipx install curator-opensearch && \
     pipx install https://github.com/aws/aws-cli/archive/refs/heads/v2.zip && \
-- 
GitLab