Read the Docs build information Build id: 4108706 Project: anyscale-ray Version: 63921 Commit: a642369d574ac0e8b4d036565f24ce257ac66c3a Date: 2026-06-15T15:05:08.739167Z State: cancelled Success: False [rtd-command-info] start-time: 2026-06-15T15:05:09.446125Z, end-time: 2026-06-15T15:05:21.299420Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 40% (4062/10006) Updating files: 41% (4103/10006) Updating files: 42% (4203/10006) Updating files: 43% (4303/10006) Updating files: 44% (4403/10006) Updating files: 45% (4503/10006) Updating files: 46% (4603/10006) Updating files: 47% (4703/10006) Updating files: 48% (4803/10006) Updating files: 49% (4903/10006) Updating files: 50% (5003/10006) Updating files: 51% (5104/10006) Updating files: 52% (5204/10006) Updating files: 53% (5304/10006) Updating files: 54% (5404/10006) Updating files: 55% (5504/10006) Updating files: 56% (5604/10006) Updating files: 57% (5704/10006) Updating files: 58% (5804/10006) Updating files: 59% (5904/10006) Updating files: 60% (6004/10006) Updating files: 61% (6104/10006) Updating files: 62% (6204/10006) Updating files: 63% (6304/10006) Updating files: 64% (6404/10006) Updating files: 65% (6504/10006) Updating files: 66% (6604/10006) Updating files: 67% (6705/10006) Updating files: 68% (6805/10006) Updating files: 69% (6905/10006) Updating files: 70% (7005/10006) Updating files: 71% (7105/10006) Updating files: 72% (7205/10006) Updating files: 73% (7305/10006) Updating files: 74% (7405/10006) Updating files: 75% (7505/10006) Updating files: 76% (7605/10006) Updating files: 77% (7705/10006) Updating files: 78% (7805/10006) Updating files: 79% (7905/10006) Updating files: 80% (8005/10006) Updating files: 81% (8105/10006) Updating files: 82% (8205/10006) Updating files: 83% (8305/10006) Updating files: 84% (8406/10006) Updating files: 85% (8506/10006) Updating files: 86% (8606/10006) Updating files: 87% (8706/10006) Updating files: 88% (8806/10006) Updating files: 89% (8906/10006) Updating files: 90% (9006/10006) Updating files: 91% (9106/10006) Updating files: 92% (9206/10006) Updating files: 93% (9306/10006) Updating files: 94% (9406/10006) Updating files: 95% (9506/10006) Updating files: 96% (9606/10006) Updating files: 97% (9706/10006) Updating files: 98% (9806/10006) Updating files: 99% (9906/10006) Updating files: 100% (10006/10006) Updating files: 100% (10006/10006), done. [rtd-command-info] start-time: 2026-06-15T15:05:21.376089Z, end-time: 2026-06-15T15:05:25.788646Z, duration: 4, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/63921/head:external-63921 From https://github.com/ray-project/ray * [new ref] refs/pull/63921/head -> external-63921 [rtd-command-info] start-time: 2026-06-15T15:05:26.468026Z, end-time: 2026-06-15T15:05:26.809730Z, duration: 0, exit-code: 0 git checkout --force a642369d574ac0e8b4d036565f24ce257ac66c3a Note: switching to 'a642369d574ac0e8b4d036565f24ce257ac66c3a'. 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 a642369 Update python/ray/_private/telemetry/open_telemetry_metric_recorder.py [rtd-command-info] start-time: 2026-06-15T15:05:26.879400Z, end-time: 2026-06-15T15:05:26.914829Z, 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-15T15:05:27.000736Z, end-time: 2026-06-15T15:05:29.866392Z, duration: 2, 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/_private/telemetry/open_telemetry_metric_recorder.py [rtd-command-info] start-time: 2026-06-15T15:05:34.914330Z, end-time: 2026-06-15T15:05:34.970804Z, duration: 0, exit-code: 0 asdf global python 3.10.19 [rtd-command-info] start-time: 2026-06-15T15:05:35.368415Z, end-time: 2026-06-15T15:05:35.915424Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.10.19.final.0-64 in 276ms creator CPython3Posix(dest=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/63921, 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: None, end-time: None, duration: None, exit-code: None python -m pip install --upgrade --no-cache-dir pip setuptools