Skip to content
This repository was archived by the owner on Apr 9, 2021. It is now read-only.

Commit 888df24

Browse files
authored
Merge branch 'master' into patch-1
2 parents f0f989c + 3a85dc5 commit 888df24

File tree

5 files changed

+6
-15
lines changed

5 files changed

+6
-15
lines changed

_data/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grpc_release_tag: v1.16.0
1+
grpc_release_tag: v1.17.0
22
grpc_java_release_tag: v1.17.0
33
milestones_link: https://github.com/grpc/grpc/milestones

docs/quickstart/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tutorials and your own projects.
7171
To install gRPC tools, run:
7272

7373
```sh
74-
$ python -m pip install grpcio-tools googleapis-common-protos
74+
$ python -m pip install grpcio-tools
7575
```
7676

7777
## Download the example

docs/samples/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ type: markdown
88
<p class="lead">Here are some sample apps to help developers build certain functionalities</p>
99

1010
<ul>
11-
<li><a target="_blank" href="https://github.com/kelseyhightower/helloworld">Go Secure Hello World Example</a></li>
1211
<li><a target="_blank" href="https://github.com/GoogleCloudPlatform/ios-docs-samples/tree/master/speech/Objective-C/Speech-gRPC-Streaming">Bidirectional streaming iOS client using Cloud Speech API</a></li>
1312
<li><a target="_blank" href="https://github.com/david-cao/gRPCBenchmarks">Android app benchmarking JSON/HTTP/1.1 and gRPC</a></li>
1413
</ul>

docs/tutorials/basic/node.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ with [protocol
1818
buffers](https://developers.google.com/protocol-buffers/docs/overview). Note
1919
that the example in this tutorial uses the
2020
[proto3](https://github.com/google/protobuf/releases) version of the protocol
21-
buffers language, which is currently in alpha release: you can find out more in
22-
the [proto3 language
23-
guide](https://developers.google.com/protocol-buffers/docs/proto3) and see the
24-
[release notes](https://github.com/google/protobuf/releases) for the new version
25-
in the protocol buffers GitHub repository.
21+
buffers language. You can find out more in the
22+
[proto3 language guide](https://developers.google.com/protocol-buffers/docs/proto3)
23+
and see the [release notes](https://github.com/google/protobuf/releases) for
24+
the new version in the protocol buffers GitHub repository.
2625

2726
<div id="toc"></div>
2827

docs/tutorials/basic/python.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,6 @@ First, install the grpcio-tools package:
158158
$ pip install grpcio-tools
159159
```
160160

161-
Then, install the googleapis-common-proto package which is a collection of
162-
generated python classes for some common protos:
163-
164-
```
165-
$ pip install googleapis-common-protos
166-
```
167-
168161
Use the following command to generate the Python code:
169162

170163
```

0 commit comments

Comments
 (0)