fixed bad version for grpcio tools
This commit is contained in:
parent
dcf3568098
commit
32c7808cab
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
Specifically leveraging 1.27.2 as that is what will be used during runtime.
|
||||||
|
|
||||||
```shell
|
```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
|
### Build and Install
|
||||||
|
|
2
tasks.py
2
tasks.py
|
@ -101,7 +101,7 @@ 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(
|
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
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue