From 4ed6bee7d7a6cb1fc2a9b4b17f20625fb63b7d86 Mon Sep 17 00:00:00 2001 From: Lonnie Liu Date: Thu, 27 Nov 2025 19:38:42 -0800 Subject: [PATCH] [dashboard] upgrade requests to 2.32.5 in tests it is uv runtime env, which installs the requests library for real. it was using requests 2.3.0, which is too old and does not run on python 3.10+ Signed-off-by: Lonnie Liu --- python/ray/dashboard/modules/node/tests/test_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/dashboard/modules/node/tests/test_node.py b/python/ray/dashboard/modules/node/tests/test_node.py index 8ffc04c1ded2..65a15ba37d77 100644 --- a/python/ray/dashboard/modules/node/tests/test_node.py +++ b/python/ray/dashboard/modules/node/tests/test_node.py @@ -289,7 +289,7 @@ def test_worker_pids_reported(enable_test_module, ray_start_with_dashboard): webui_url = format_web_url(webui_url) node_id = ray_start_with_dashboard["node_id"] - @ray.remote(runtime_env={"uv": {"packages": ["requests==2.3.0"]}}) + @ray.remote(runtime_env={"uv": {"packages": ["requests==2.32.5"]}}) class UvActor: def get_pid(self): return os.getpid()