Skip to content

Commit bc49824

Browse files
authored
Requiring 'grpcio >= 1.8.2'. (googleapis#4642)
This is due to a nasty spinlock bug [1] that has been partially fixed [2] in `1.8.2`. [1]: grpc/grpc#9688 [2]: grpc/grpc#13665
1 parent ff818ba commit bc49824

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

api_core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
EXTRAS_REQUIREMENTS = {
6565
':python_version<"3.2"': ['futures >= 3.2.0'],
66-
'grpc': ['grpcio >= 1.7.0'],
66+
'grpc': ['grpcio >= 1.8.2'],
6767
}
6868

6969
setup(

core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
]
5656

5757
EXTRAS_REQUIREMENTS = {
58-
'grpc': ['grpcio >= 1.7.0'],
58+
'grpc': ['grpcio >= 1.8.2'],
5959
}
6060

6161
setup(

pubsub/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252

5353
REQUIREMENTS = [
5454
'google-api-core[grpc] >= 0.1.2, < 0.2.0dev',
55+
'grpcio >= 1.8.2',
5556
'google-auth >= 1.0.2, < 2.0dev',
5657
'grpc-google-iam-v1 >= 0.11.1, < 0.12dev',
5758
'psutil >= 5.2.2, < 6.0dev',

0 commit comments

Comments
 (0)