From 3a5c12c90ec78e3c69491e59369b8d8077a77423 Mon Sep 17 00:00:00 2001 From: Pierre Tardy Date: Tue, 21 Mar 2017 11:48:17 +0100 Subject: [PATCH] fix appeyor build curl seems to not be present anymore in appveyor so we need to use powershell to download sqlite --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 71b5f95abdbf..4250ac209174 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,7 +24,9 @@ install: # TODO: There is no binary wheel for pysqlite and building on Windows is # painful. Let's just substitude sqlite3.dll with never version. - - "curl -k -O https://www.sqlite.org/2016/sqlite-dll-win32-x86-3110000.zip" + - ps: | + [Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12' + Start-FileDownload 'https://www.sqlite.org/2016/sqlite-dll-win32-x86-3110000.zip' - "7z x sqlite-dll-win32-x86-3110000.zip" - "copy /y sqlite3.dll %PYTHON%\\DLLs\\"