From 3f132a869cdf0c63063fcfc675dceec19ed0599b Mon Sep 17 00:00:00 2001 From: Sam Armstrong <88863522+Sam-Armstrong@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:46:46 +0000 Subject: [PATCH] fix: using correct python version in integration tests workflow --- .github/workflows/integration-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 235da17be91f..5efb3e8852a3 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -10,6 +10,7 @@ on: permissions: actions: read contents: write + jobs: kornia: runs-on: ubuntu-latest @@ -33,7 +34,7 @@ jobs: - name: Install ivy run: | cd ivy - sudo pip3 install -e . + pip install -e . - name: Run Tests id: tests