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

Feat!: try to minimize dependencies taken from ray #410

Merged
merged 4 commits into from
May 21, 2024
Merged
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
12 changes: 10 additions & 2 deletions projects/orquestra-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ dependencies = [

[project.optional-dependencies]
ray = [
"ray[default]==2.9.0",
"ray==2.9.0",
"virtualenv>=20.0.24, !=20.21.1", # Ray depends on this, but it's missing from the base requirements.
"async-timeout", # Ray depends on this, but its missing from ray requirements. Can be removed when https://github.com/ray-project/ray/issues/41267 is fixed.
]
all = ["orquestra-sdk[ray]"]

dashboard = [
"orquestra-sdk[ray]",
"ray[default]",
]

all = ["orquestra-sdk[dashboard]"]

# Docs-specific deps. This list should match the requirements we're using in
# the multi-repo docs builds.
docs = [
Expand Down
Loading