Skip to content

Commit 69b4d97

Browse files
committed
Fix wildcard wheel expansion in pip install in build workflow
1 parent cb7dbb4 commit 69b4d97

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/conda-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
shell: bash -l {0}
7171
run: |
7272
python -m build --wheel --no-isolation
73-
python -m pip install "dist/*.whl[all,test]"
73+
WHEEL_PATH=$(ls dist/*.whl)
74+
python -m pip install "${WHEEL_PATH}[all,test]"
7475
7576
- name: Run tests
7677
shell: bash -l {0}

0 commit comments

Comments
 (0)