From 9f40c1ae78661bacfe1903f65458424c2ee13b8f Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Sun, 21 Oct 2018 20:47:29 +0900 Subject: [PATCH] add appveyor.yml for windows CI --- appveyor.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..837c75a9 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,12 @@ +init: +- ECHO %PYTHON% + +environment: + matrix: + - PYTHON: C:/Python36-x64 + +install: + - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py') + - "%PYTHON%/python.exe C:/get-pip.py" + - "%PYTHON%/Scripts/pip.exe install pillow==2.9.0" +