From 475734d377a79c81311d5c61a85333a1550d02e2 Mon Sep 17 00:00:00 2001 From: Earle Lowe <30607889+emlowe@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:13:07 -0800 Subject: [PATCH] Update extensive-tests.yml --- .github/workflows/extensive-tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/extensive-tests.yml b/.github/workflows/extensive-tests.yml index 4f0ee7d7..8ce621f7 100644 --- a/.github/workflows/extensive-tests.yml +++ b/.github/workflows/extensive-tests.yml @@ -54,11 +54,7 @@ jobs: . ./activate pip install --upgrade pip ls target/wheels/ - # this mess puts the name of the `.whl` file into `$WHEEL_PATH` - # remove the dot, use the `glob` lib to grab the file from the directory - export WHEEL_PATH=$(echo ${{ matrix.python }} | python -c 'DOTLESS=input().replace(".", ""); import glob; print(" ".join(filter(lambda x: "musl" not in x, glob.glob("target/wheels/clvm_tools_rs-*-cp*-*.whl"))))' ) - echo ${WHEEL_PATH} - pip install ${WHEEL_PATH} + pip install --no-index --find-links target/wheels/ clvm_tools_rs - name: Install other wheels run: |