adding invoke change to support grpcio binary install
This commit is contained in:
parent
fe362a10d6
commit
9b541d0316
1 changed files with 3 additions and 1 deletions
4
tasks.py
4
tasks.py
|
@ -80,7 +80,9 @@ def install_system(c: Context, os_info: OsInfo, hide: bool) -> None:
|
|||
|
||||
def install_grpcio(c: Context, hide: bool) -> None:
|
||||
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:
|
||||
|
|
Loading…
Reference in a new issue