fixed bad version for grpcio tools

This commit is contained in:
Blake Harnden 2020-07-13 09:01:55 -07:00
parent dcf3568098
commit 32c7808cab
2 changed files with 2 additions and 2 deletions

View file

@ -235,7 +235,7 @@ Python module grpcio-tools is currently needed to generate gRPC protobuf code.
Specifically leveraging 1.27.2 as that is what will be used during runtime.
```shell
python3 -m pip install --user grpcio==12.7.2 grpcio-tools==12.7.2
python3 -m pip install --user grpcio==1.27.2 grpcio-tools==1.27.2
```
### Build and Install

View file

@ -101,7 +101,7 @@ 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==12.7.2 grpcio-tools==12.7.2", hide=hide
"python3 -m pip install --user grpcio==1.27.2 grpcio-tools==1.27.2", hide=hide
)