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: |