From 07a8fb1b37f14b5393c04bcb6f557d44701f34fe Mon Sep 17 00:00:00 2001 From: Stefan Scherzinger Date: Wed, 24 Jul 2024 06:37:13 +0200 Subject: [PATCH] Fix the installation of dependencies in the CI --- .github/script/install_dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/script/install_dependencies.sh b/.github/script/install_dependencies.sh index 7c5e6f9..fa8e881 100755 --- a/.github/script/install_dependencies.sh +++ b/.github/script/install_dependencies.sh @@ -1,4 +1,4 @@ #/usr/bin/bash cd $HOME -apt-get install curl libcurl4-openssl-dev -apt-get install python3-fastapi python3-uvicorn +apt-get install -y curl libcurl4-openssl-dev +pip install --break-system-packages fastapi uvicorn httpx requests coverage