From 5cf105bd1c198ec9127ce94cf4faffdc737e78d5 Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Tue, 16 Sep 2025 15:03:09 +0200 Subject: [PATCH] CI: install python requests module to fix upload cache script On the `master` branch the pipelines fail at the `upload-cache-to-github.py` script as it is missing the `requests` python module. Install it before the build to have a working cache upload again. Fixes: https://github.com/cpp-pm/hunter/issues/819 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81196fb20f..10b6c0f49a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,6 +123,9 @@ jobs: if: runner.os == 'Windows' run: echo "HUNTER_PYTHON_LOCATION=$env:pythonLocation" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 + - name: Install requests python module for upload script + run: python -m pip install requests + - name: Build on Unix if: runner.os != 'Windows' env: