Skip to content

Commit 0638a91

Browse files
Fix shell expansion in installation command
1 parent 1aa838b commit 0638a91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-emscripten.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ jobs:
8282
source .venv-pyodide/bin/activate
8383
8484
# Install the built numcodecs WASM wheel and relevant dependencies
85-
python -m pip install dist/*.whl[msgpack,crc32c,test,test_extras]
85+
pip install $(ls dist/*.whl)"[msgpack,crc32c,test,test_extras]"
86+
# TODO: get zfpy built in Pyodide and install it here
8687
8788
# Change into a different directory before running tests to avoid
8889
# the test runner picking up the local numcodecs package

0 commit comments

Comments
 (0)