Remove PyYaml from upper constraints 36/74236/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 13:00:30 +0000 (15:00 +0200)
It doesnt compile because of cython

Change-Id: I271834f0c79456c7d5153dc35c1463b3bf75950e
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 98ae28297724b87719dfa6ff3c58460a3b1fc896)

docker/core/Dockerfile

index 6c2a7bf..a1cc232 100644 (file)
@@ -24,6 +24,7 @@ RUN apk -U upgrade && \
         git checkout FETCH_HEAD) && \
     sed -i -E /^tempest==+.*$/d /src/requirements/upper-constraints.txt && \
     sed -i -E /^neutron=/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 \