Read the Docs build information Build id: 4129354 Project: anyscale-ray Version: 64234 Commit: 475bb981990aa175c903ad462127c7d0d62e2354 Date: 2026-06-20T17:46:53.051402Z State: cancelled Success: False [rtd-command-info] start-time: 2026-06-20T17:46:53.790174Z, end-time: 2026-06-20T17:47:05.528637Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 28% (2806/10016) Updating files: 29% (2905/10016) Updating files: 30% (3005/10016) Updating files: 31% (3105/10016) Updating files: 32% (3206/10016) Updating files: 33% (3306/10016) Updating files: 34% (3406/10016) Updating files: 35% (3506/10016) Updating files: 36% (3606/10016) Updating files: 37% (3706/10016) Updating files: 38% (3807/10016) Updating files: 39% (3907/10016) Updating files: 40% (4007/10016) Updating files: 41% (4107/10016) Updating files: 42% (4207/10016) Updating files: 43% (4307/10016) Updating files: 44% (4408/10016) Updating files: 45% (4508/10016) Updating files: 46% (4608/10016) Updating files: 47% (4708/10016) Updating files: 48% (4808/10016) Updating files: 49% (4908/10016) Updating files: 50% (5008/10016) Updating files: 51% (5109/10016) Updating files: 52% (5209/10016) Updating files: 53% (5309/10016) Updating files: 54% (5409/10016) Updating files: 55% (5509/10016) Updating files: 56% (5609/10016) Updating files: 57% (5710/10016) Updating files: 58% (5810/10016) Updating files: 59% (5910/10016) Updating files: 60% (6010/10016) Updating files: 61% (6110/10016) Updating files: 62% (6210/10016) Updating files: 63% (6311/10016) Updating files: 64% (6411/10016) Updating files: 65% (6511/10016) Updating files: 66% (6611/10016) Updating files: 67% (6711/10016) Updating files: 68% (6811/10016) Updating files: 69% (6912/10016) Updating files: 70% (7012/10016) Updating files: 71% (7112/10016) Updating files: 72% (7212/10016) Updating files: 73% (7312/10016) Updating files: 74% (7412/10016) Updating files: 75% (7512/10016) Updating files: 76% (7613/10016) Updating files: 77% (7713/10016) Updating files: 78% (7813/10016) Updating files: 79% (7913/10016) Updating files: 80% (8013/10016) Updating files: 81% (8113/10016) Updating files: 82% (8214/10016) Updating files: 83% (8314/10016) Updating files: 84% (8414/10016) Updating files: 85% (8514/10016) Updating files: 86% (8614/10016) Updating files: 87% (8714/10016) Updating files: 88% (8815/10016) Updating files: 89% (8915/10016) Updating files: 90% (9015/10016) Updating files: 91% (9115/10016) Updating files: 92% (9215/10016) Updating files: 93% (9315/10016) Updating files: 94% (9416/10016) Updating files: 95% (9516/10016) Updating files: 96% (9616/10016) Updating files: 97% (9716/10016) Updating files: 98% (9816/10016) Updating files: 99% (9916/10016) Updating files: 100% (10016/10016) Updating files: 100% (10016/10016), done. [rtd-command-info] start-time: 2026-06-20T17:47:05.608388Z, end-time: 2026-06-20T17:47:07.918190Z, duration: 2, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/64234/head:external-64234 From https://github.com/ray-project/ray * [new ref] refs/pull/64234/head -> external-64234 [rtd-command-info] start-time: 2026-06-20T17:47:08.653146Z, end-time: 2026-06-20T17:47:09.410559Z, duration: 0, exit-code: 0 git checkout --force 475bb981990aa175c903ad462127c7d0d62e2354 Note: switching to '475bb981990aa175c903ad462127c7d0d62e2354'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 475bb98 fix: address bot reviews with asyncio task holding and mlflow client optimizations [rtd-command-info] start-time: 2026-06-20T17:47:09.488803Z, end-time: 2026-06-20T17:47:09.526930Z, duration: 0, exit-code: 0 cat .readthedocs.yaml # .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-24.04 tools: python: "3.10" jobs: # On PR builds, skip the Sphinx build when the PR doesn't touch any # files that affect documentation output. Reduces queue pressure on # the shared RTD build slots when several PRs are open at once. # Tag/branch builds (master, stable, etc.) always run. # See https://docs.readthedocs.com/platform/stable/guides/build/skip-build.html # # Some constructs are avoided deliberately because RTD's job runner # silently drops scripts that contain them: use echo (not printf # with a backslash-escape format string), avoid backslash escapes # in general, and keep shell comments out of this block so that # backticks/$() inside comments don't confuse the preprocessor. post_checkout: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/source/conf.py fail_on_warning: true # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: doc/requirements-doc.lock.txt [rtd-command-info] start-time: 2026-06-20T17:47:09.610490Z, end-time: 2026-06-20T17:47:12.907544Z, duration: 3, exit-code: 0 if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml Doc-affecting files changed; building docs. Changed doc-relevant paths: python/ray/serve/batching.py python/ray/train/v2/api/__init__.py python/ray/train/v2/api/mlflow.py python/ray/train/v2/tests/test_mlflow_callback.py [rtd-command-info] start-time: 2026-06-20T17:47:17.367458Z, end-time: 2026-06-20T17:47:17.425436Z, duration: 0, exit-code: 0 asdf global python 3.10.19 [rtd-command-info] start-time: 2026-06-20T17:47:17.773660Z, end-time: 2026-06-20T17:47:18.477274Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.10.19.final.0-64 in 413ms creator CPython3Posix(dest=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64234, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/docs/.local/share/virtualenv) added seed packages: pip==23.1, setuptools==67.6.1, wheel==0.40.0 activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator [rtd-command-info] start-time: 2026-06-20T17:47:18.559813Z, end-time: 2026-06-20T17:47:22.956677Z, duration: 4, exit-code: 0 python -m pip install --upgrade --no-cache-dir pip setuptools Requirement already satisfied: pip in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64234/lib/python3.10/site-packages (23.1) Collecting pip Downloading pip-26.1.2-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 17.3 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64234/lib/python3.10/site-packages (67.6.1) Collecting setuptools Downloading setuptools-82.0.1-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 30.7 MB/s eta 0:00:00 Installing collected packages: setuptools, pip Attempting uninstall: setuptools Found existing installation: setuptools 67.6.1 Uninstalling setuptools-67.6.1: Successfully uninstalled setuptools-67.6.1 Attempting uninstall: pip Found existing installation: pip 23.1 Uninstalling pip-23.1: Successfully uninstalled pip-23.1 Successfully installed pip-26.1.2 setuptools-82.0.1 [rtd-command-info] start-time: None, end-time: None, duration: None, exit-code: None python -m pip install --upgrade --no-cache-dir sphinx