From 74efa96a119327a8786465427989a6f1d8051183 Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Thu, 18 Sep 2025 14:57:56 +0200 Subject: [PATCH] CI: install gitpython python module for cache upload script Fixes: https://github.com/cpp-pm/hunter/issues/827 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10b6c0f49a..9add511f99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,7 +124,7 @@ jobs: 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 + run: python -m pip install requests gitpython - name: Build on Unix if: runner.os != 'Windows'