Remove PyYaml from upper constraints 35/74235/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Fri, 27 Oct 2023 12:58:44 +0000 (14:58 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Fri, 27 Oct 2023 12:58:44 +0000 (14:58 +0200)
It doesnt compile because of cython

Change-Id: I271834f0c79456c7d5153dc35c1463b3bf75950e
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
docker/core/Dockerfile

index 5001f30..4f47b0d 100644 (file)
@@ -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 \