1 parent e3fc81a commit a321ecbCopy full SHA for a321ecb
1 file changed
.github/workflows/ci.yml
@@ -409,7 +409,8 @@ jobs:
409
shell: pwsh
410
run: |
411
.\env\Scripts\Activate.ps1
412
- pip install --upgrade build wheel
+ $pythonExe = Join-Path $env:VIRTUAL_ENV "Scripts\python.exe"
413
+ & $pythonExe -m pip install --upgrade build wheel
414
415
$msys2Root = "${{ steps.msys2.outputs.msys2-location }}"
416
if ("${{ matrix.arch }}" -eq "arm64") {
@@ -452,7 +453,7 @@ jobs:
452
453
& $cxx --version
454
& $cmake --version
455
& $ninja --version
- python -m build --wheel -o dist
456
+ & $pythonExe -m build --wheel -o dist
457
458
- name: Install wheel
459
0 commit comments