Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump grpcio to 1.32.0 because we require grpc's asyncio api #28025

Merged
merged 4 commits into from
Sep 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ cloudpickle
filelock
frozenlist
gpustat == 1.0.0b1
grpcio >= 1.28.1, <= 1.43.0
grpcio >= 1.32.0, <= 1.43.0; python_version < '3.10'
grpcio >= 1.42.0, <= 1.43.0; python_version >= '3.10'
jsonschema
msgpack >= 1.0.0, < 2.0.0
numpy >= 1.16
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def get_packages(self):
"click >= 7.0, <= 8.0.4",
"dataclasses; python_version < '3.7'",
"filelock",
"grpcio >= 1.28.1, <= 1.43.0; python_version < '3.10'",
"grpcio >= 1.32.0, <= 1.43.0; python_version < '3.10'",
alanwguo marked this conversation as resolved.
Show resolved Hide resolved
"grpcio >= 1.42.0, <= 1.43.0; python_version >= '3.10'",
"jsonschema",
"msgpack >= 1.0.0, < 2.0.0",
Expand Down