Skip to content

Commit 8acc56e

Browse files
committed
feat(RHOAIENG-26581): use direct git installation of kuberay python-client
1 parent 0add890 commit 8acc56e

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

poetry.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cryptography = "43.0.3"
2929
executing = "1.2.0"
3030
pydantic = "< 2"
3131
ipywidgets = "8.1.2"
32-
odh-kuberay-client = {version = "0.0.0.dev40", source = "testpypi"}
32+
python-client = { git = "https://github.com/ray-project/kuberay.git", subdirectory = "clients/python-client", rev = "d1e750d9beac612ad455b951c1a789f971409ab3" }
3333

3434
[[tool.poetry.source]]
3535
name = "pypi"

src/codeflare_sdk/ray/rayjobs/rayjob.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
# limitations under the License.
1414

1515
"""
16-
RayJob client for submitting and managing Ray jobs using the odh-kuberay-client.
16+
RayJob client for submitting and managing Ray jobs using the kuberay python client.
1717
"""
1818

1919
import logging
2020
from typing import Dict, Any, Optional, Tuple
21-
from odh_kuberay_client.kuberay_job_api import RayjobApi
21+
from python_client.kuberay_job_api import RayjobApi
2222

2323
from ..cluster.cluster import Cluster
2424
from ..cluster.config import ClusterConfiguration

0 commit comments

Comments
 (0)