Skip to content

Commit 15b1d60

Browse files
committed
Use curl with --ssl-no-revoke
To fix: curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092013) - The revocation function was unable to check revocation because the revocation server was offline.
1 parent 82c3999 commit 15b1d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ environment:
2121
install:
2222
- '%PYTHON%\%EXECUTABLE% --version'
2323
- '%PYTHON%\%EXECUTABLE% -m pip install --upgrade pip'
24-
- curl -fsSL -o pillow-test-images.zip https://github.com/python-pillow/test-images/archive/main.zip
24+
- curl -fsSL --ssl-no-revoke -o pillow-test-images.zip https://github.com/python-pillow/test-images/archive/main.zip
2525
- 7z x pillow-test-images.zip -oc:\
2626
- xcopy /S /Y c:\test-images-main\* c:\pillow\tests\images
27-
- curl -fsSL -o nasm-win64.zip https://raw.githubusercontent.com/python-pillow/pillow-depends/main/nasm-2.16.01-win64.zip
27+
- curl -fsSL --ssl-no-revoke -o nasm-win64.zip https://raw.githubusercontent.com/python-pillow/pillow-depends/main/nasm-2.16.01-win64.zip
2828
- 7z x nasm-win64.zip -oc:\
2929
- choco install ghostscript --version=10.0.0.20230317
3030
- path c:\nasm-2.16.01;C:\Program Files\gs\gs10.00.0\bin;%PATH%

0 commit comments

Comments
 (0)