Skip to content

Commit eeb38c7

Browse files
authored
Fixes to tests (#58317)
lint on code format and cherrypick #58215 --------- Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent f86c8a0 commit eeb38c7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/env/install-dependencies.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ install_upgrade_pip() {
133133
fi
134134

135135
if "${python}" -m pip --version || "${python}" -m ensurepip; then # Configure pip if present
136-
"${python}" -m pip install --upgrade pip
136+
# 25.3 has breaking change where other Python packages like "click" does not work
137+
# with it anymore. pip-compile will fail to work with the package's setup code.
138+
"${python}" -m pip install pip==25.2
137139

138140
# If we're in a CI environment, do some configuration
139141
if [[ "${CI-}" == "true" ]]; then

doc/source/ray-core/doc_code/direct_transport_nixl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def consume_with_nixl(self, refs):
6161
# __nixl_limitations_start__
6262
from ray.exceptions import ActorDiedError
6363

64+
6465
@ray.remote(num_gpus=1)
6566
class Actor:
6667
def __init__(self):

0 commit comments

Comments
 (0)