Skip to content

Commit 57d8975

Browse files
committed
Fix installation on Windows
1 parent a18ff84 commit 57d8975

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,10 @@ jobs:
9393
run: |
9494
uv venv
9595
.venv\Scripts\activate
96-
for %i in (sdf-*-py3-none-any.whl) do uv pip install %i
96+
$files = Get-ChildItem "sdf-*-py3-none-any.whl"
97+
foreach ($f in $files) {
98+
uv pip install $f.FullName
99+
}
97100
- if: matrix.name != 'x86_64-windows'
98101
run: |
99102
uv venv

0 commit comments

Comments
 (0)