adding invoke change to support grpcio binary install

This commit is contained in:
Blake Harnden 2020-07-10 12:09:04 -07:00
parent fe362a10d6
commit 9b541d0316

View file

@ -80,7 +80,9 @@ def install_system(c: Context, os_info: OsInfo, hide: bool) -> None:
def install_grpcio(c: Context, hide: bool) -> None: def install_grpcio(c: Context, hide: bool) -> None:
print("installing grpcio-tools...") print("installing grpcio-tools...")
c.run("python3 -m pip install --user grpcio-tools", hide=hide) c.run(
"python3 -m pip install --only-binary \":all:\" --user grpcio-tools", hide=hide
)
def build(c: Context, hide: bool) -> None: def build(c: Context, hide: bool) -> None: