Skip to content

Commit

Permalink
Revert "Unpin grpcio for Ray Client (ray-project#37368)" (ray-project…
Browse files Browse the repository at this point in the history
…#37427)

Signed-off-by: Victor <vctr.y.m@example.com>
  • Loading branch information
rkooo567 authored and Victor committed Oct 11, 2023
1 parent 0a66ef4 commit daef0f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ requests
pandas
tensorboardX<=2.6.0,>=1.9 # >=2.6.1 uses protobuf>=4, and conflicts with other packages.
gymnasium==0.26.3
grpcio<=1.50.0,>=1.42.0 # ray client
aiohttp>=3.7
starlette
typer
Expand Down
4 changes: 3 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ def get_packages(self):
"virtualenv >=20.0.24, < 20.21.1", # For pip runtime env.
],
"client": [
"grpcio",
# The Ray client needs a specific range of gRPC to work:
# Tracking issue: https://github.com/grpc/grpc/issues/31885
"grpcio >= 1.42.0, <= 1.50.0",
],
"serve": ["uvicorn", "requests", "starlette", "fastapi", "aiorwlock"],
"tune": ["pandas", "tensorboardX>=1.9", "requests", pyarrow_dep],
Expand Down

0 comments on commit daef0f7

Please sign in to comment.