From 5585a9c04573977e0a0ffa232c3b0728d21af87c Mon Sep 17 00:00:00 2001 From: Tejas Ramesh <63494847+tejas3070@users.noreply.github.com> Date: Sat, 9 Mar 2024 01:09:18 -0500 Subject: [PATCH] Update python-app.yml (Test Cache#34) --- .github/workflows/python-app.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 9bc67f2..fb1c36d 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -42,12 +42,12 @@ jobs: pip install -e . - name: Install Dependencies if Cache Missed - if: steps.cache-pip.outputs.cache-hit != 'true' + #if: steps.cache-pip.outputs.cache-hit != 'true' run: | cd triton_viz - pip install -e . - pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121 - pip uninstall pytorch-triton -y + /usr/bin/python3.10 -m pip install -e . + /usr/bin/python3.10 -m pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121 + /usr/bin/python3.10 -m pip uninstall pytorch-triton -y - name: Lint with pre-commit run: |