From 698cc9e5aa577e269bb631e0a1b4ccc88bbb2469 Mon Sep 17 00:00:00 2001 From: Alexander Kislukhin <47034358+liquidcarbon@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:06:00 -0600 Subject: [PATCH] inflate winpython properly --- .github/workflows/benchmarks.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 85705fc..1486652 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -19,10 +19,9 @@ jobs: run: Invoke-WebRequest -Uri "https://github.com/winpython/winpython/releases/download/7.5.20240410final/Winpython64-3.12.3.0.exe" -OutFile "Winpython64-3.12.3.0.exe" - name: Install WinPython - run: Start-Process -FilePath "Winpython64-3.12.3.0.exe" -ArgumentList "/passive" + run: .\Winpython64-3.12.3.0.exe -y -gm2 - name: Verify installation run: | - $env:Path += ";C:\WinPython-64bit\python-3.12.3\Scripts" - python --version - + $folder = Get-ChildItem -Name -Directory WPy64* | Select-Object -First 1 + & (Join-Path $folder "scripts\python.bat") -VV