Skip to content

Commit

Permalink
[CHORE] add ray client to deps (#1631)
Browse files Browse the repository at this point in the history
failure when running on remote clusters:
```
  File "/runner/_work/daft-benchmarking/daft-benchmarking/.venv/lib/python3.10/site-packages/ray/client_builder.py", line 99, in __init__
    raise ValueError(
ValueError: Ray Client requires pip package `ray[client]`. If you installed the minimal Ray (e.g. `pip install ray`), please reinstall by executing `pip install ray[client]`.
```
  • Loading branch information
samster25 authored Nov 17, 2023
1 parent f18aeae commit 0097aa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ numpy = ["numpy"]
pandas = ["pandas"]
ray = [
# Inherit existing Ray version. Get the "default" extra for the Ray dashboard.
"ray[data]>=2.0.0",
"ray[data, client]>=2.0.0",
# Explicitly install packaging. See issue: https://github.com/ray-project/ray/issues/34806
"packaging"
]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ opencv-python==4.8.1.78
pyarrow==12; platform_system != "Windows"
pyarrow==6.0.1; platform_system === "Windows"
# Ray
ray[data]==2.6.3
ray[data, client]==2.6.3

#Iceberg
pyiceberg==0.5.1; python_version >= '3.8'
Expand Down

0 comments on commit 0097aa1

Please sign in to comment.