From cf65f47add0b72870624a03a3033908d60c08feb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 27 Jan 2021 10:49:58 +0100 Subject: [PATCH] Revert "Suppress pip warning about installing scripts not in PATH" This reverts commit 2eaa7a21b05017969a78198d65f47ad91cd8a356 because the --no-warn-script-location option only exists in Python 3.9+ apparently and we don't want to require such a new version just for this. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fb44705ca0..02b4834139 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -74,7 +74,7 @@ build_script: c:\projects\wxwidgets\build\tools\appveyor.bat before_test: - ps: | Write-Output "Getting and launching httpbin." - C:\Python35\Scripts\pip.exe --disable-pip-version-check --no-warn-script-location install httpbin + C:\Python35\Scripts\pip.exe --disable-pip-version-check install httpbin Start-Job -Name wx_httpbin { C:\Python35\python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log } Start-Sleep -Seconds 5 if (curl -s http://127.0.0.1:5000/ip > $null) {