Skip to content

Commit 64087a3

Browse files
committed
Updated Ray version to 2.20.0
1 parent 5a7b57f commit 64087a3

File tree

9 files changed

+112
-184
lines changed

9 files changed

+112
-184
lines changed

Diff for: .github/workflows/e2e_tests.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
sudo rm -rf /opt/ghc
4444
sudo rm -rf "/usr/local/share/boost"
4545
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
46+
sudo apt install python3.9
4647
docker rmi $(docker image ls -aq)
4748
echo "Final status:"
4849
df -h

Diff for: poetry.lock

+103-176
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ homepage = "https://github.com/project-codeflare/codeflare-sdk"
2020
keywords = ['codeflare', 'python', 'sdk', 'client', 'batch', 'scale']
2121

2222
[tool.poetry.dependencies]
23-
python = "^3.8"
23+
python = "^3.9"
2424
openshift-client = "1.0.18"
2525
rich = "^12.5"
26-
ray = {version = "2.7.0", extras = ["data", "default"]}
26+
ray = {version = "2.20.0", extras = ["data", "default"]}
2727
kubernetes = ">= 25.3.0, < 27"
2828
codeflare-torchx = "0.6.0.dev2"
2929
cryptography = "40.0.2"

Diff for: src/codeflare_sdk/templates/base-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
# - kubernetes
5050
spec:
5151
# The version of Ray you are using. Make sure all Ray containers are running this version of Ray.
52-
rayVersion: '2.7.0'
52+
rayVersion: '2.20.0'
5353
# If enableInTreeAutoscaling is true, the autoscaler sidecar will be added to the Ray head pod.
5454
# Ray autoscaler integration is supported only for Ray versions >= 1.11.0
5555
# Ray autoscaler integration is Beta with KubeRay >= 0.3.0 and Ray >= 2.0.0.

Diff for: tests/test-case-no-mcad.yamls

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ spec:
9797
name: odh-trusted-ca-bundle
9898
optional: true
9999
name: odh-ca-cert
100-
rayVersion: 2.7.0
100+
rayVersion: 2.20.0
101101
workerGroupSpecs:
102102
- groupName: small-group-unit-test-cluster-ray
103103
maxReplicas: 2

Diff for: tests/test-case-prio.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ spec:
126126
name: odh-trusted-ca-bundle
127127
optional: true
128128
name: odh-ca-cert
129-
rayVersion: 2.7.0
129+
rayVersion: 2.20.0
130130
workerGroupSpecs:
131131
- groupName: small-group-prio-test-cluster
132132
maxReplicas: 2

Diff for: tests/test-case.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ spec:
124124
name: odh-trusted-ca-bundle
125125
optional: true
126126
name: odh-ca-cert
127-
rayVersion: 2.7.0
127+
rayVersion: 2.20.0
128128
workerGroupSpecs:
129129
- groupName: small-group-unit-test-cluster
130130
maxReplicas: 2

Diff for: tests/test-default-appwrapper.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ spec:
112112
name: odh-trusted-ca-bundle
113113
optional: true
114114
name: odh-ca-cert
115-
rayVersion: 2.7.0
115+
rayVersion: 2.20.0
116116
workerGroupSpecs:
117117
- groupName: small-group-unit-test-default-cluster
118118
maxReplicas: 1

Diff for: tests/unit_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ def get_ray_obj(group, version, namespace, plural, cls=None):
13061306
},
13071307
},
13081308
},
1309-
"rayVersion": "2.7.0",
1309+
"rayVersion": "2.20.0",
13101310
"workerGroupSpecs": [
13111311
{
13121312
"groupName": "small-group-quicktest",

0 commit comments

Comments
 (0)