Skip to content

Commit

Permalink
[tune/train] Add hard dependency on fsspec ray-project#38581
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Liang <[email protected]>
  • Loading branch information
ericl authored Aug 18, 2023
1 parent 79bd90a commit ca1a546
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/ray/train/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pandas # noqa: F401
import requests # noqa: F401
import pyarrow # noqa: F401
import fsspec # noqa: F401
except ImportError as exc:
raise ImportError(
"Can't import ray.train as some dependencies are missing. "
Expand Down
1 change: 1 addition & 0 deletions python/ray/tune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pandas # noqa: F401
import requests # noqa: F401
import pyarrow # noqa: F401
import fsspec # noqa: F401
except ImportError as exc:
raise ImportError(
"Can't import ray.tune as some dependencies are missing. "
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def get_packages(self):
else "grpcio",
],
"serve": ["uvicorn", "requests", "starlette", "fastapi", "aiorwlock"],
"tune": ["pandas", "tensorboardX>=1.9", "requests", pyarrow_dep],
"tune": ["pandas", "tensorboardX>=1.9", "requests", pyarrow_dep, "fsspec"],
"observability": [
"opentelemetry-api",
"opentelemetry-sdk",
Expand Down

0 comments on commit ca1a546

Please sign in to comment.