From 00b8e7dfe01b852c0dd13546d76d4fe38718db0d Mon Sep 17 00:00:00 2001 From: phillip-stephens Date: Thu, 23 Jan 2025 16:27:15 -0800 Subject: [PATCH] fix bug in installing pip hopefully --- .github/workflows/integration-test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 0133a7e9..73a59ea8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -60,11 +60,10 @@ jobs: set -e sudo apt update # Install latest Python - sudo apt install -y python3 jp - python -m ensurepip --upgrade + sudo apt install -y python3 jp python3-pip # Install Python dependencies - pip install --user zschema - pip install --user -r requirements.txt + pip3 install --user zschema + pip3 install --user -r requirements.txt - name: Run tests run: |