diff --git a/ci/raydepsets/cli.py b/ci/raydepsets/cli.py index 1dcdb17a3797..1bbd0d32c537 100644 --- a/ci/raydepsets/cli.py +++ b/ci/raydepsets/cli.py @@ -16,8 +16,8 @@ from ci.raydepsets.workspace import Depset, Workspace DEFAULT_UV_FLAGS = """ + --no-header --generate-hashes - --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url diff --git a/ci/raydepsets/tests/test_cli.py b/ci/raydepsets/tests/test_cli.py index ffef2e45362a..ed3de694bd83 100644 --- a/ci/raydepsets/tests/test_cli.py +++ b/ci/raydepsets/tests/test_cli.py @@ -112,7 +112,7 @@ def test_compile(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="ray_base_test_depset", output="requirements_compiled.txt", ) @@ -137,7 +137,7 @@ def test_compile_update_package(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="ray_base_test_depset", output="requirements_compiled.txt", ) @@ -147,7 +147,8 @@ def test_compile_update_package(self): output_text_valid = output_file_valid.read_text() assert output_text == output_text_valid - def test_compile_with_append_and_override_flags(self): + @patch("sys.stdout", new_callable=io.StringIO) + def test_compile_with_append_and_override_flags(self, mock_stdout): with tempfile.TemporaryDirectory() as tmpdir: copy_data_to_tmpdir(tmpdir) manager = _create_test_manager(tmpdir) @@ -161,16 +162,11 @@ def test_compile_with_append_and_override_flags(self): name="ray_base_test_depset", output="requirements_compiled.txt", ) - output_file = Path(tmpdir) / "requirements_compiled.txt" - output_text = output_file.read_text() - assert "--python-version 3.10" in output_text - assert ( - "--extra-index-url https://download.pytorch.org/whl/cu124" - in output_text - ) + stdout = mock_stdout.getvalue() + assert "--python-version 3.10" in stdout + assert "--extra-index-url https://download.pytorch.org/whl/cu124" in stdout assert ( - "--extra-index-url https://download.pytorch.org/whl/cu128" - not in output_text + "--extra-index-url https://download.pytorch.org/whl/cu128" not in stdout ) def test_compile_by_depset_name(self): @@ -199,7 +195,7 @@ def test_subset(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt", "requirements_test_subset.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="general_depset__py311_cpu", output="requirements_compiled_general.txt", ) @@ -207,7 +203,7 @@ def test_subset(self): manager.subset( source_depset="general_depset__py311_cpu", requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="subset_general_depset__py311_cpu", output="requirements_compiled_subset_general.txt", ) @@ -230,7 +226,7 @@ def test_subset_does_not_exist(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt", "requirements_test_subset.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="general_depset__py311_cpu", output="requirements_compiled_general.txt", ) @@ -239,7 +235,7 @@ def test_subset_does_not_exist(self): manager.subset( source_depset="general_depset__py311_cpu", requirements=["requirements_compiled_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="subset_general_depset__py311_cpu", output="requirements_compiled_subset_general.txt", ) @@ -328,7 +324,8 @@ def test_get_path(self): == Path(tmpdir) / "requirements_test.txt" ) - def test_append_uv_flags_exist_in_output(self): + @patch("sys.stdout", new_callable=io.StringIO) + def test_append_uv_flags_exist_in_output(self, mock_stdout): with tempfile.TemporaryDirectory() as tmpdir: copy_data_to_tmpdir(tmpdir) manager = _create_test_manager(tmpdir) @@ -339,11 +336,11 @@ def test_append_uv_flags_exist_in_output(self): output="requirements_compiled_general.txt", append_flags=["--python-version=3.10"], ) - output_file = Path(tmpdir) / "requirements_compiled_general.txt" - output_text = output_file.read_text() - assert "--python-version=3.10" in output_text + stdout = mock_stdout.getvalue() + assert "--python-version=3.10" in stdout - def test_append_uv_flags_with_space_in_flag(self): + @patch("sys.stdout", new_callable=io.StringIO) + def test_append_uv_flags_with_space_in_flag(self, mock_stdout): with tempfile.TemporaryDirectory() as tmpdir: copy_data_to_tmpdir(tmpdir) manager = _create_test_manager(tmpdir) @@ -354,9 +351,8 @@ def test_append_uv_flags_with_space_in_flag(self): output="requirements_compiled_general.txt", append_flags=["--python-version 3.10"], ) - output_file = Path(tmpdir) / "requirements_compiled_general.txt" - output_text = output_file.read_text() - assert "--python-version 3.10" in output_text + stdout = mock_stdout.getvalue() + assert "--python-version 3.10" in stdout def test_include_setuptools(self): with tempfile.TemporaryDirectory() as tmpdir: @@ -373,7 +369,8 @@ def test_include_setuptools(self): output_text = output_file.read_text() assert "--unsafe-package setuptools" not in output_text - def test_ignore_setuptools(self): + @patch("sys.stdout", new_callable=io.StringIO) + def test_ignore_setuptools(self, mock_stdout): with tempfile.TemporaryDirectory() as tmpdir: copy_data_to_tmpdir(tmpdir) manager = _create_test_manager(tmpdir) @@ -384,9 +381,8 @@ def test_ignore_setuptools(self): output="requirements_compiled_general.txt", include_setuptools=False, ) - output_file = Path(tmpdir) / "requirements_compiled_general.txt" - output_text = output_file.read_text() - assert "--unsafe-package setuptools" in output_text + stdout = mock_stdout.getvalue() + assert "--unsafe-package setuptools" in stdout def test_override_uv_flag_single_flag(self): expected_flags = DEFAULT_UV_FLAGS.copy() @@ -403,12 +399,12 @@ def test_override_uv_flag_single_flag(self): def test_override_uv_flag_multiple_flags(self): expected_flags = DEFAULT_UV_FLAGS.copy() - expected_flags.remove("--index-url") - expected_flags.remove("https://pypi.org/simple") - expected_flags.extend(["--index-url", "https://dummyurl.com"]) + expected_flags.remove("--index-strategy") + expected_flags.remove("unsafe-best-match") + expected_flags.extend(["--index-strategy", "first-index"]) assert ( _override_uv_flags( - ["--index-url https://dummyurl.com"], + ["--index-strategy first-index"], DEFAULT_UV_FLAGS.copy(), ) == expected_flags @@ -546,21 +542,21 @@ def test_expand(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="general_depset__py311_cpu", output="requirements_compiled_general.txt", ) manager.compile( constraints=[], requirements=["requirements_expanded.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="expanded_depset__py311_cpu", output="requirements_compiled_expanded.txt", ) manager.expand( depsets=["general_depset__py311_cpu", "expanded_depset__py311_cpu"], constraints=["requirement_constraints_expand.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], requirements=[], name="expand_general_depset__py311_cpu", output="requirements_compiled_expand_general.txt", @@ -590,7 +586,7 @@ def test_expand_with_requirements(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="general_depset__py311_cpu", output="requirements_compiled_general.txt", ) @@ -598,7 +594,7 @@ def test_expand_with_requirements(self): depsets=["general_depset__py311_cpu"], requirements=["requirements_expanded.txt"], constraints=["requirement_constraints_expand.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="expand_general_depset__py311_cpu", output="requirements_compiled_expand_general.txt", ) @@ -672,7 +668,7 @@ def test_copy_lock_files_to_temp_dir(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="check_depset", output="requirements_compiled_test.txt", ) @@ -697,7 +693,7 @@ def test_diff_lock_files_out_of_date(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="check_depset", output="requirements_compiled_test.txt", ) @@ -732,7 +728,7 @@ def test_diff_lock_files_up_to_date(self): manager.compile( constraints=["requirement_constraints_test.txt"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="check_depset", output="requirements_compiled_test.txt", ) @@ -749,7 +745,7 @@ def test_compile_with_packages(self): manager.compile( constraints=["requirement_constraints_test.txt"], packages=["emoji==2.9.0", "pyperclip==1.6.0"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="packages_test_depset", output="requirements_compiled_test_packages.txt", ) @@ -771,7 +767,7 @@ def test_compile_with_packages_and_requirements(self): constraints=["requirement_constraints_test.txt"], packages=["emoji==2.9.0", "pyperclip==1.6.0"], requirements=["requirements_test.txt"], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="packages_test_depset", output="requirements_compiled_test_packages.txt", ) @@ -801,7 +797,7 @@ def test_requirements_ordering(self, mock_stdout): "requirements_expanded.txt", "requirements_compiled_test_expand.txt", ], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="requirements_ordering_test_depset", output="requirements_compiled_requirements_ordering.txt", ) @@ -831,7 +827,7 @@ def test_constraints_ordering(self, mock_stdout): "requirements_expanded.txt", "requirements_compiled_test_expand.txt", ], - append_flags=["--no-annotate", "--no-header"], + append_flags=["--no-annotate"], name="constraints_ordering_test_depset", output="requirements_compiled_constraints_ordering.txt", ) diff --git a/python/deplocks/base_deps/ray_base_deps_py3.10.lock b/python/deplocks/base_deps/ray_base_deps_py3.10.lock index b243e1326927..c43c437cad9c 100644 --- a/python/deplocks/base_deps/ray_base_deps_py3.10.lock +++ b/python/deplocks/base_deps/ray_base_deps_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package ray --python-version=3.10 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock docker/base-deps/requirements.in -o python/deplocks/base_deps/ray_base_deps_py3.10.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_deps/ray_base_deps_py3.11.lock b/python/deplocks/base_deps/ray_base_deps_py3.11.lock index 0015b6446942..06a4bc868f03 100644 --- a/python/deplocks/base_deps/ray_base_deps_py3.11.lock +++ b/python/deplocks/base_deps/ray_base_deps_py3.11.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package ray --python-version=3.11 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock docker/base-deps/requirements.in -o python/deplocks/base_deps/ray_base_deps_py3.11.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_deps/ray_base_deps_py3.12.lock b/python/deplocks/base_deps/ray_base_deps_py3.12.lock index a1a1cd23a20c..634eee582de2 100644 --- a/python/deplocks/base_deps/ray_base_deps_py3.12.lock +++ b/python/deplocks/base_deps/ray_base_deps_py3.12.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package ray --python-version=3.12 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock docker/base-deps/requirements.in -o python/deplocks/base_deps/ray_base_deps_py3.12.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_deps/ray_base_deps_py3.9.lock b/python/deplocks/base_deps/ray_base_deps_py3.9.lock index 67b4fb3b5807..8f5c51034ab2 100644 --- a/python/deplocks/base_deps/ray_base_deps_py3.9.lock +++ b/python/deplocks/base_deps/ray_base_deps_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package ray --python-version=3.9 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock docker/base-deps/requirements.in -o python/deplocks/base_deps/ray_base_deps_py3.9.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_extra/ray_base_extra_py3.10.lock b/python/deplocks/base_extra/ray_base_extra_py3.10.lock index d188f8535048..0f8b687e7ce0 100644 --- a/python/deplocks/base_extra/ray_base_extra_py3.10.lock +++ b/python/deplocks/base_extra/ray_base_extra_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.10 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock docker/base-deps/requirements.in docker/base-extra/requirements.in -o python/deplocks/base_extra/ray_base_extra_py3.10.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_extra/ray_base_extra_py3.11.lock b/python/deplocks/base_extra/ray_base_extra_py3.11.lock index 0edc6bd27920..37ef5d53b27a 100644 --- a/python/deplocks/base_extra/ray_base_extra_py3.11.lock +++ b/python/deplocks/base_extra/ray_base_extra_py3.11.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.11 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock docker/base-deps/requirements.in docker/base-extra/requirements.in -o python/deplocks/base_extra/ray_base_extra_py3.11.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_extra/ray_base_extra_py3.12.lock b/python/deplocks/base_extra/ray_base_extra_py3.12.lock index 351dee8a5744..5b54e3bd7998 100644 --- a/python/deplocks/base_extra/ray_base_extra_py3.12.lock +++ b/python/deplocks/base_extra/ray_base_extra_py3.12.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.12 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock docker/base-deps/requirements.in docker/base-extra/requirements.in -o python/deplocks/base_extra/ray_base_extra_py3.12.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/base_extra/ray_base_extra_py3.9.lock b/python/deplocks/base_extra/ray_base_extra_py3.9.lock index 5056ab0f1027..73092bb48bb0 100644 --- a/python/deplocks/base_extra/ray_base_extra_py3.9.lock +++ b/python/deplocks/base_extra/ray_base_extra_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.9 --python-platform=linux -c release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock docker/base-deps/requirements.in docker/base-extra/requirements.in -o python/deplocks/base_extra/ray_base_extra_py3.9.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/python/deplocks/docs/docbuild_depset_py3.10.lock b/python/deplocks/docs/docbuild_depset_py3.10.lock index 2f7db69becf3..ab732937984d 100644 --- a/python/deplocks/docs/docbuild_depset_py3.10.lock +++ b/python/deplocks/docs/docbuild_depset_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.10 --python-platform=linux --unsafe-package ray doc/requirements-doc.txt -o python/deplocks/docs/docbuild_depset_py3.10.lock --index-url https://pypi.org/simple accessible-pygments==0.0.5 \ diff --git a/python/deplocks/docs/docbuild_depset_py3.9.lock b/python/deplocks/docs/docbuild_depset_py3.9.lock index e30aedaaf380..08aabe56f222 100644 --- a/python/deplocks/docs/docbuild_depset_py3.9.lock +++ b/python/deplocks/docs/docbuild_depset_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.9 --python-platform=linux --unsafe-package ray doc/requirements-doc.txt -o python/deplocks/docs/docbuild_depset_py3.9.lock --index-url https://pypi.org/simple accessible-pygments==0.0.5 \ diff --git a/python/deplocks/llm/ray_py311_cpu.lock b/python/deplocks/llm/ray_py311_cpu.lock index b4df29da6f77..83dbc4da8728 100644 --- a/python/deplocks/llm/ray_py311_cpu.lock +++ b/python/deplocks/llm/ray_py311_cpu.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cpu -c python/deplocks/llm/ray_test_py311_cpu.lock python/requirements.txt -o python/deplocks/llm/ray_py311_cpu.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cpu diff --git a/python/deplocks/llm/ray_py311_cu128.lock b/python/deplocks/llm/ray_py311_cu128.lock index 3bbd6c2a4edf..0e3f15a20c5d 100644 --- a/python/deplocks/llm/ray_py311_cu128.lock +++ b/python/deplocks/llm/ray_py311_cu128.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cu128 -c python/deplocks/llm/ray_test_py311_cu128.lock python/requirements.txt -o python/deplocks/llm/ray_py311_cu128.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/python/deplocks/llm/ray_test_py311_cpu.lock b/python/deplocks/llm/ray_test_py311_cpu.lock index b41c3a4f073d..28a020fd8e82 100644 --- a/python/deplocks/llm/ray_test_py311_cpu.lock +++ b/python/deplocks/llm/ray_test_py311_cpu.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cpu -c /tmp/ray-deps/requirements_compiled.txt python/requirements.txt python/requirements/base-test-requirements.txt python/requirements/cloud-requirements.txt -o python/deplocks/llm/ray_test_py311_cpu.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cpu diff --git a/python/deplocks/llm/ray_test_py311_cu128.lock b/python/deplocks/llm/ray_test_py311_cu128.lock index a68bb9a4ed68..a011399a558e 100644 --- a/python/deplocks/llm/ray_test_py311_cu128.lock +++ b/python/deplocks/llm/ray_test_py311_cu128.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cu128 -c /tmp/ray-deps/requirements_compiled.txt python/requirements.txt python/requirements/base-test-requirements.txt python/requirements/cloud-requirements.txt -o python/deplocks/llm/ray_test_py311_cu128.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/python/deplocks/llm/rayllm_py311_cpu.lock b/python/deplocks/llm/rayllm_py311_cpu.lock index 68443ef82241..2b1ed346288c 100644 --- a/python/deplocks/llm/rayllm_py311_cpu.lock +++ b/python/deplocks/llm/rayllm_py311_cpu.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cpu -c python/deplocks/llm/rayllm_test_py311_cpu.lock python/requirements.txt python/requirements/llm/llm-requirements.txt -o python/deplocks/llm/rayllm_py311_cpu.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cpu diff --git a/python/deplocks/llm/rayllm_py311_cu128.lock b/python/deplocks/llm/rayllm_py311_cu128.lock index b1170641b8ff..a0e066e51a72 100644 --- a/python/deplocks/llm/rayllm_py311_cu128.lock +++ b/python/deplocks/llm/rayllm_py311_cu128.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cu128 -c python/deplocks/llm/rayllm_test_py311_cu128.lock python/requirements.txt python/requirements/llm/llm-requirements.txt -o python/deplocks/llm/rayllm_py311_cu128.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/python/deplocks/llm/rayllm_test_py311_cpu.lock b/python/deplocks/llm/rayllm_test_py311_cpu.lock index ba65804ce1a1..c8e0d057f92e 100644 --- a/python/deplocks/llm/rayllm_test_py311_cpu.lock +++ b/python/deplocks/llm/rayllm_test_py311_cpu.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cpu -c python/deplocks/llm/ray_test_py311_cpu.lock python/requirements.txt python/requirements/base-test-requirements.txt python/requirements/cloud-requirements.txt python/requirements/llm/llm-requirements.txt python/requirements/llm/llm-test-requirements.txt -o python/deplocks/llm/rayllm_test_py311_cpu.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cpu diff --git a/python/deplocks/llm/rayllm_test_py311_cu128.lock b/python/deplocks/llm/rayllm_test_py311_cu128.lock index f6d9cd058b91..2a41067e356c 100644 --- a/python/deplocks/llm/rayllm_test_py311_cu128.lock +++ b/python/deplocks/llm/rayllm_test_py311_cu128.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux --extra-index-url https://download.pytorch.org/whl/cu128 -c python/deplocks/llm/ray_test_py311_cu128.lock python/requirements.txt python/requirements/base-test-requirements.txt python/requirements/cloud-requirements.txt python/requirements/llm/llm-requirements.txt python/requirements/llm/llm-test-requirements.txt -o python/deplocks/llm/rayllm_test_py311_cu128.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/python/deplocks/ray_img/ray_img_py310.lock b/python/deplocks/ray_img/ray_img_py310.lock index 945a5df99798..f7f5d689d01d 100644 --- a/python/deplocks/ray_img/ray_img_py310.lock +++ b/python/deplocks/ray_img/ray_img_py310.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.10 --unsafe-package ray --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt release/ray_release/byod/ray_dev.in -o python/deplocks/ray_img/ray_img_py310.lock --index-url https://pypi.org/simple aiohappyeyeballs==2.6.1 \ diff --git a/python/deplocks/ray_img/ray_img_py311.lock b/python/deplocks/ray_img/ray_img_py311.lock index 65e17cfc8c54..8657bde97db3 100644 --- a/python/deplocks/ray_img/ray_img_py311.lock +++ b/python/deplocks/ray_img/ray_img_py311.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.11 --unsafe-package ray --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt release/ray_release/byod/ray_dev.in -o python/deplocks/ray_img/ray_img_py311.lock --index-url https://pypi.org/simple aiohappyeyeballs==2.6.1 \ diff --git a/python/deplocks/ray_img/ray_img_py312.lock b/python/deplocks/ray_img/ray_img_py312.lock index d96e328b209f..cb4b648a6481 100644 --- a/python/deplocks/ray_img/ray_img_py312.lock +++ b/python/deplocks/ray_img/ray_img_py312.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.12 --unsafe-package ray --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt release/ray_release/byod/ray_dev.in -o python/deplocks/ray_img/ray_img_py312.lock --index-url https://pypi.org/simple aiohappyeyeballs==2.6.1 \ diff --git a/python/deplocks/ray_img/ray_img_py39.lock b/python/deplocks/ray_img/ray_img_py39.lock index 9151fbd5257c..f4cb931d1377 100644 --- a/python/deplocks/ray_img/ray_img_py39.lock +++ b/python/deplocks/ray_img/ray_img_py39.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --python-version=3.9 --unsafe-package ray --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt release/ray_release/byod/ray_dev.in -o python/deplocks/ray_img/ray_img_py39.lock --index-url https://pypi.org/simple aiohappyeyeballs==2.6.1 \ diff --git a/release/ray_release/byod/audio_transcription_py3.10.lock b/release/ray_release/byod/audio_transcription_py3.10.lock index dbd942d48870..435bcb01d2c3 100644 --- a/release/ray_release/byod/audio_transcription_py3.10.lock +++ b/release/ray_release/byod/audio_transcription_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.10 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/audio_transcription/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/audio_transcription_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/audio_transcription_py3.9.lock b/release/ray_release/byod/audio_transcription_py3.9.lock index 3e3b5e95eb25..7ffb2bd3f1d1 100644 --- a/release/ray_release/byod/audio_transcription_py3.9.lock +++ b/release/ray_release/byod/audio_transcription_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.9 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/audio_transcription/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/audio_transcription_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/document_embedding_py3.10.lock b/release/ray_release/byod/document_embedding_py3.10.lock index 322037ab1f2f..ff01527ca3e2 100644 --- a/release/ray_release/byod/document_embedding_py3.10.lock +++ b/release/ray_release/byod/document_embedding_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.10 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/document_embedding/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/document_embedding_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/document_embedding_py3.9.lock b/release/ray_release/byod/document_embedding_py3.9.lock index 3b8f4f8a0ad2..638919a860c2 100644 --- a/release/ray_release/byod/document_embedding_py3.9.lock +++ b/release/ray_release/byod/document_embedding_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.9 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/document_embedding/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/document_embedding_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/image_classification_py3.10.lock b/release/ray_release/byod/image_classification_py3.10.lock index f7d5b02eddba..ce120f694cd8 100644 --- a/release/ray_release/byod/image_classification_py3.10.lock +++ b/release/ray_release/byod/image_classification_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.10 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/image_classification/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/image_classification_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/image_classification_py3.9.lock b/release/ray_release/byod/image_classification_py3.9.lock index bf171e03d7ef..674f252a80c2 100644 --- a/release/ray_release/byod/image_classification_py3.9.lock +++ b/release/ray_release/byod/image_classification_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.9 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/image_classification/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/image_classification_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/large_image_embedding_py3.10.lock b/release/ray_release/byod/large_image_embedding_py3.10.lock index 0229fc1f2b77..b378c0b11d80 100644 --- a/release/ray_release/byod/large_image_embedding_py3.10.lock +++ b/release/ray_release/byod/large_image_embedding_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.10 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/large_image_embedding/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/large_image_embedding_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/large_image_embedding_py3.9.lock b/release/ray_release/byod/large_image_embedding_py3.9.lock index 96e79bd45e8c..a01597c99429 100644 --- a/release/ray_release/byod/large_image_embedding_py3.9.lock +++ b/release/ray_release/byod/large_image_embedding_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.9 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/large_image_embedding/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/large_image_embedding_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.10.lock b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.10.lock index bc3295dc60b1..61e9a4659a89 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.10.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.10 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.10.in -o release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.11.lock b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.11.lock index 8c4aca79a1ce..2fd738028e84 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.11.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.11.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.11 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.11.in -o release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.11.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.12.lock b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.12.lock index 5faf016fe40d..33b31370001c 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.12.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.12.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.12 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.12.in -o release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.12.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.9.lock b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.9.lock index 539d418d4360..21b48261d55e 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.9.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.9 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.9.in -o release/ray_release/byod/ray_base_extra_testdeps_cuda_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.10.lock b/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.10.lock index 98c40882eea5..6c7167f4c7b8 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.10.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.10 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.9.lock b/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.9.lock index 979b972b517a..e363a0a5299b 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.9.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.9 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/ray_base_extra_testdeps_gpu_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock b/release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock index e0b072648c1f..17d11b777e8b 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.10 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.10.in -o release/ray_release/byod/ray_base_extra_testdeps_py3.10.lock --index-url https://pypi.org/simple absl-py==1.4.0 \ diff --git a/release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock b/release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock index f9c5c5057143..eb54a46af25e 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.11 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.11.in -o release/ray_release/byod/ray_base_extra_testdeps_py3.11.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock b/release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock index 176be1e7adca..d6db0f369b79 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.12 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.12.in -o release/ray_release/byod/ray_base_extra_testdeps_py3.12.lock --index-url https://pypi.org/simple adlfs==2023.8.0 \ diff --git a/release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock b/release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock index 3167366ab2f3..360e8798274e 100644 --- a/release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock +++ b/release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.9 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_3.9.in -o release/ray_release/byod/ray_base_extra_testdeps_py3.9.lock --index-url https://pypi.org/simple absl-py==1.4.0 \ diff --git a/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.10.lock b/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.10.lock index 8dd5096001a7..a320d4455bf0 100644 --- a/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.10.lock +++ b/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.10 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_ml_byod_3.10.in -o release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.9.lock b/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.9.lock index 5f5be4ad42e4..e11a3abcbfb1 100644 --- a/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.9.lock +++ b/release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --unsafe-package ray --python-version=3.9 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_ml_byod_3.9.in -o release/ray_release/byod/ray_ml_base_extra_testdeps_cuda_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.10.lock b/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.10.lock index 53be9991bfd0..798766ddbac0 100644 --- a/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.10.lock +++ b/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.10 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_ml_byod_3.10.in -o release/ray_release/byod/ray_ml_base_extra_testdeps_py3.10.lock --index-url https://pypi.org/simple absl-py==1.4.0 \ diff --git a/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.9.lock b/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.9.lock index 8f05b549cd7a..e9dd945964d9 100644 --- a/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.9.lock +++ b/release/ray_release/byod/ray_ml_base_extra_testdeps_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --unsafe-package ray --python-version=3.9 --python-platform=linux -c /tmp/ray-deps/requirements_compiled.txt docker/base-deps/requirements.in docker/base-extra/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_ml_byod_3.9.in -o release/ray_release/byod/ray_ml_base_extra_testdeps_py3.9.lock --index-url https://pypi.org/simple absl-py==1.4.0 \ diff --git a/release/ray_release/byod/video_object_detection_py3.10.lock b/release/ray_release/byod/video_object_detection_py3.10.lock index 1a7cf3bfb282..2c62e8aede00 100644 --- a/release/ray_release/byod/video_object_detection_py3.10.lock +++ b/release/ray_release/byod/video_object_detection_py3.10.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.10 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/video_object_detection/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.10.in -o release/ray_release/byod/video_object_detection_py3.10.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128 diff --git a/release/ray_release/byod/video_object_detection_py3.9.lock b/release/ray_release/byod/video_object_detection_py3.9.lock index 7243f091cb32..bc226c14fade 100644 --- a/release/ray_release/byod/video_object_detection_py3.9.lock +++ b/release/ray_release/byod/video_object_detection_py3.9.lock @@ -1,5 +1,3 @@ -# This file was autogenerated by uv via the following command: -# uv pip compile --generate-hashes --index-url https://pypi.org/simple --index-strategy unsafe-best-match --no-strip-markers --emit-index-url --emit-find-links --unsafe-package setuptools --extra-index-url https://download.pytorch.org/whl/cu128 --python-version=3.9 --unsafe-package ray --python-platform=linux docker/base-deps/requirements.in docker/base-extra/requirements.in release/nightly_tests/multimodal_inference_benchmarks/video_object_detection/requirements.in release/ray_release/byod/ray_dev.in release/ray_release/byod/requirements_byod_gpu_3.9.in -o release/ray_release/byod/video_object_detection_py3.9.lock --index-url https://pypi.org/simple --extra-index-url https://download.pytorch.org/whl/cu128