From 6ebfe07d8a5043b3c34e8b3f564be07e7e2063f5 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 13 Dec 2024 18:59:34 +0100 Subject: [PATCH] CI: fedoraw:rawhide: workaround issue with python3-numpy package --- .github/workflows/fedora_rawhide/Dockerfile.ci | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/fedora_rawhide/Dockerfile.ci b/.github/workflows/fedora_rawhide/Dockerfile.ci index b6118251d9d4..667192588774 100644 --- a/.github/workflows/fedora_rawhide/Dockerfile.ci +++ b/.github/workflows/fedora_rawhide/Dockerfile.ci @@ -28,3 +28,6 @@ COPY requirements.txt /tmp/ # One of the dependencies of jsonschema 4.18 is rpds_py which requires a Rust compiler RUN PYTHON_CMD=python3 && $PYTHON_CMD -m pip install "jsonschema<4.18" RUN PYTHON_CMD=python3 && $PYTHON_CMD -m pip install -r /tmp/requirements.txt + +# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=2332307 +RUN PYTHON_CMD=python3 && $PYTHON_CMD -m pip install --force-reinstall numpy