Skip to content

Commit

Permalink
fix appeyor build
Browse files Browse the repository at this point in the history
curl seems to not be present anymore in appveyor
so we need to use powershell to download sqlite
  • Loading branch information
tardyp committed Mar 21, 2017
1 parent 4bc7f34 commit 3a5c12c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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\\"

Expand Down

0 comments on commit 3a5c12c

Please sign in to comment.