We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20490d6 commit ef704aaCopy full SHA for ef704aa
.github/workflows/test_windows_wheel.yml
@@ -102,9 +102,11 @@ jobs:
102
Write-Host "Waiting for zvec==$version to become available on PyPI..."
103
}
104
105
+ $ErrorActionPreference = 'Continue'
106
+ $PSNativeCommandUseErrorActionPreference = $false
107
$found = $false
108
for ($i = 1; $i -le 30; $i++) {
- python -m pip install @indexArgs --dry-run "zvec==$version" *> $null
109
+ python -m pip install @indexArgs --dry-run "zvec==$version" 1>$null 2>$null
110
if ($LASTEXITCODE -eq 0) {
111
Write-Host "Version $version is available."
112
$found = $true
0 commit comments