From ac984e70e10472e547f7bfd7e94dad1b7191c2ad Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 20 Jun 2016 17:46:50 -0400 Subject: [PATCH] WAG: try to preinstall 'grpcio' on appveyor. --- appveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index cfa49be49f31..5c0ef5462124 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,10 +30,12 @@ environment: - PYTHON: "C:\\Python27" PYTHON_VERSION: "2.7.11" PYTHON_ARCH: "32" + INSTALL_GRPC: "1" - PYTHON: "C:\\Python27-x64" PYTHON_VERSION: "2.7.11" PYTHON_ARCH: "64" + INSTALL_GRPC: "1" # Python 3.4.4 is the latest Python 3.4 with a Windows installer # Python 3.4.4 is the overall latest @@ -87,6 +89,9 @@ install: # target Python version and architecture - "%CMD_IN_ENV% pip install wheel nose nose-exclude unittest2 cryptography" + # Work around https://github.com/grpc/grpc/issues/6939 + - '%CMD_IN_ENV% if "%INSTALL_GRPC%"=="1" (pip install grpcio)' + build_script: # Build the compiled extension - "%CMD_IN_ENV% python setup.py build"