From 2272bd0c4bca8fdd64b58d27ba5c46073073dd7c Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Wed, 29 Oct 2025 22:43:58 -0300 Subject: [PATCH] fix: Installing Pip version 24 in GitHub Actions fails when default's 25 From : > To avoid version conflicts, install the required `pip` version (24.2) > right after `setup-python` action. --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 33ad8b4d..4b00b92b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -45,6 +45,9 @@ jobs: python-version: "${{ matrix.python_version }}" check-latest: true + - name: Install Pip + run: make python-pip-install + - name: Create Python Virtual Environment run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"