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: update dependecies for latest release #447

Merged
merged 2 commits into from
Sep 27, 2024
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
6 changes: 3 additions & 3 deletions projects/orquestra-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ requires-python = ">= 3.8"
# version we can easily install and test, even if there are older versions with
# the same API.
dependencies = [
"orquestra-workflow-shared~=1.0.0",
"orquestra-workflow-shared~=2.0.0",

# Schema definition
"pydantic>1.10.7",
Expand Down Expand Up @@ -72,11 +72,11 @@ dependencies = [

[project.optional-dependencies]
ray = [
"orquestra-workflow-runtime[ray]~=1.0.0",
"orquestra-workflow-runtime[ray]~=2.0.0",
]

dashboard = [
"orquestra-workflow-runtime[dashboard]~=1.0.0",
"orquestra-workflow-runtime[dashboard]~=2.0.0",
]

all = ["orquestra-sdk[dashboard]"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@
# © Copyright 2024 Zapata Computing Inc.
################################################################################

HEAD_NODE_IMAGE = (
"hub.stage.nexus.orquestra.io/zapatacomputing/workflow-driver-ray:head-node-1.0.0a3"
)
DEFAULT_WORKER_IMAGE = (
"hub.stage.nexus.orquestra.io/zapatacomputing/orquestra-sdk-base:worker-1.0.0a1"
)
HEAD_NODE_IMAGE = "hub.stage.nexus.orquestra.io/zapatacomputing/workflow-driver-ray:orquestra-head-image-v1.0.0" # noqa
DEFAULT_WORKER_IMAGE = "hub.stage.nexus.orquestra.io/zapatacomputing/orquestra-sdk-base:orquestra-worker-image-v1.0.0" # noqa
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

from orquestra import sdk
from orquestra.sdk._client._base._config._settings import LOCAL_RUNTIME_CONFIGURATION
from orquestra.sdk._client._base._docker_images import DEFAULT_WORKER_IMAGE
from orquestra.sdk._client._base._testing import _example_wfs, _ipc
from orquestra.sdk._client._base._testing._example_wfs import (
workflow_parametrised_with_resources,
Expand Down Expand Up @@ -975,17 +976,13 @@ def test_setting_resources(
(
None,
None,
{
"image:hub.stage.nexus.orquestra.io/zapatacomputing/orquestra-sdk-base:worker-1.0.0a1": 1 # noqa: E501
},
{f"image:{DEFAULT_WORKER_IMAGE}": 1},
{},
),
(
None,
1,
{
"image:hub.stage.nexus.orquestra.io/zapatacomputing/orquestra-sdk-base:worker-1.0.0a1-cuda": 1 # noqa: E501
},
{f"image:{DEFAULT_WORKER_IMAGE}-cuda": 1},
{
"num_gpus": 1,
},
Expand Down
Loading