From c2c98d5f69472d445388984acb434ddf516995ea Mon Sep 17 00:00:00 2001 From: Pablo Santiago Blum de Aguiar Date: Fri, 6 Oct 2017 01:14:35 -0300 Subject: [PATCH] #N/A: Use curl to download get-pip.py on AppVeyor `curl` seems to be smarter than `net.webclient` when dealing with SSL. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 96da08c9..da1711de 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ init: - ps: "ls C:/Python*" install: - - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') + - "curl -fsS -o C:/get-pip.py https://bootstrap.pypa.io/get-pip.py" - "%PYTHON%/python.exe C:/get-pip.py" - "%PYTHON%/Scripts/pip.exe install -U setuptools" - "%PYTHON%/python.exe setup.py develop"