From 9f6c00bdad1130b410ed57a781dc462492efa992 Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Fri, 27 Dec 2024 12:09:21 +0000 Subject: [PATCH] No uv for python 3.6 apparently Signed-off-by: Prabhu Subramanian --- ci/base-images/sle/Dockerfile.python36 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/base-images/sle/Dockerfile.python36 b/ci/base-images/sle/Dockerfile.python36 index bdfb46de5..91edc275d 100644 --- a/ci/base-images/sle/Dockerfile.python36 +++ b/ci/base-images/sle/Dockerfile.python36 @@ -42,7 +42,7 @@ RUN set -e; \ && mv /root/.sdkman/candidates/* /opt/ \ && rm -rf /root/.sdkman \ && python3 -m pip install --no-cache-dir --upgrade pip virtualenv \ - && python3 -m pip install --no-cache-dir --upgrade --user pipenv poetry uv \ + && python3 -m pip install --no-cache-dir --upgrade --user pipenv poetry \ && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash \ && source /root/.nvm/nvm.sh \ && nvm install ${NODE_VERSION} \