From 98ae28297724b87719dfa6ff3c58460a3b1fc896 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 27 Oct 2023 14:58:44 +0200 Subject: Remove PyYaml from upper constraints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It doesnt compile because of cython Change-Id: I271834f0c79456c7d5153dc35c1463b3bf75950e Signed-off-by: Cédric Ollivier --- docker/core/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 5001f30cc..4f47b0d74 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -23,6 +23,7 @@ RUN apk -U upgrade && \ git fetch --tags https://gerrit.opnfv.org/gerrit/functest $BRANCH && \ git checkout FETCH_HEAD) && \ sed -i -E /^tempest==+.*$/d /src/requirements/upper-constraints.txt && \ + sed -i -E /^PyYAML==+.*$/d /src/requirements/upper-constraints.txt && \ case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d /src/requirements/upper-constraints.txt && apk add --no-cache py3-pynacl ;; esac && \ sed -i -E /#egg=functest/d /src/functest/upper-constraints.txt && \ pip3 install --use-deprecated=legacy-resolver --no-cache-dir --src /src -c/src/functest/upper-constraints.txt -c/src/requirements/upper-constraints.txt \ -- cgit 1.2.3-korg