Use Python 3.8 for httpbin in AppVeyor CI builds

Installing httpbin using PYthon 3.5 fails with strange build errors, try
using 3.8 instead.
This commit is contained in:
Vadim Zeitlin 2023-03-28 19:03:31 +02:00
parent b01faaafa5
commit 0af3c92890

View file

@ -81,7 +81,7 @@ build_script: c:\projects\wxwidgets\build\tools\appveyor.bat
before_test:
- ps: |
Write-Output "Getting and launching httpbin."
$env:PATH = "C:\Python35;C:\Python35\Scripts;" + $env:PATH
$env:PATH = "C:\Python38;C:\Python38\Scripts;" + $env:PATH
pip.exe --disable-pip-version-check install httpbin
Start-Job -Name wx_httpbin { python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log }
Start-Sleep -Seconds 5