Skip to content

Commit 0ec47b9

Browse files
Escape wheel filename correctly
1 parent f51ddd1 commit 0ec47b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/emscripten.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ jobs:
9898
source .venv-pyodide/bin/activate
9999
100100
# Install numcodecs
101-
python -m pip install numcodecs-wasm/dist/*.whl"[crc32c]"
101+
pip install $(ls numcodecs-wasm/dist/*.whl)"[crc32c]"
102102
103103
# Install Zarr without dependencies until we can figure out the
104104
# numcodecs wheel versioning issue
105-
python -m pip install dist/*.whl --no-deps
105+
pip install dist/*.whl --no-deps
106106
pip install "packaging>=22.0" "numpy>=1.25" "typing_extensions>=4.9" "donfig>=0.8"
107107
108108
# Install test dependencies

0 commit comments

Comments
 (0)