From 59d62e869639aba5a60451e8a17fc4f8028093c5 Mon Sep 17 00:00:00 2001 From: hugovk Date: Sat, 25 Mar 2017 21:05:44 +0200 Subject: [PATCH] Download and extract zip instead of cloning dependencies, no need for git history --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 808917d6b..fa2efc0f4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,7 +16,9 @@ environment: - PYTHON: C:/Python33-x64 install: -- git clone --depth 1 https://github.com/python-pillow/pillow-depends.git c:\pillow-depends +- curl -fsSL -o pillow-depends.zip https://github.com/python-pillow/pillow-depends/archive/master.zip +- 7z x pillow-depends.zip -oc:\ +- mv c:\pillow-depends-master c:\pillow-depends - xcopy c:\pillow-depends\*.zip c:\pillow\winbuild\ - xcopy c:\pillow-depends\*.tar.gz c:\pillow\winbuild\ - xcopy /s c:\pillow-depends\test_images\* c:\pillow\tests\images