From 5a5895d20bd903df3ee9b55421115059ef63fc24 Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Wed, 26 Jul 2023 16:59:15 +0800 Subject: [PATCH] more fixes --- .github/workflows/test-wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-wheels.yml b/.github/workflows/test-wheels.yml index 69124fa..7b32d4d 100644 --- a/.github/workflows/test-wheels.yml +++ b/.github/workflows/test-wheels.yml @@ -33,13 +33,13 @@ jobs: run: python -c "import sys; print(sys.version)" - name: Install torch - if: startsWith(matrix.os, "macos") + if: startsWith(matrix.os, 'macos') shell: bash run: | pip install torch==${{ github.event.inputs.torch_version }} - name: Install torch - if: startsWith(matrix.os, "ubuntu") || startsWith(matrix.os, "windows") + if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'windows') shell: bash run: | pip install torch==${{ github.event.inputs.torch_version }}+cpu -f https://download.pytorch.org/whl/torch_stable.html