Read the Docs build information Build id: 4166290 Project: anyscale-ray Version: master Commit: b7d4022dc2ec222fcc5c59f71247669fa55ef37b Date: 2026-07-01T19:29:55.437046Z State: cancelled Success: False [rtd-command-info] start-time: 2026-07-01T19:29:56.296607Z, end-time: 2026-07-01T19:30:08.114505Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 26% (2698/10072) Updating files: 27% (2720/10072) Updating files: 28% (2821/10072) Updating files: 29% (2921/10072) Updating files: 30% (3022/10072) Updating files: 31% (3123/10072) Updating files: 32% (3224/10072) Updating files: 33% (3324/10072) Updating files: 34% (3425/10072) Updating files: 35% (3526/10072) Updating files: 36% (3626/10072) Updating files: 37% (3727/10072) Updating files: 38% (3828/10072) Updating files: 39% (3929/10072) Updating files: 40% (4029/10072) Updating files: 41% (4130/10072) Updating files: 42% (4231/10072) Updating files: 43% (4331/10072) Updating files: 44% (4432/10072) Updating files: 45% (4533/10072) Updating files: 46% (4634/10072) Updating files: 47% (4734/10072) Updating files: 48% (4835/10072) Updating files: 49% (4936/10072) Updating files: 50% (5036/10072) Updating files: 51% (5137/10072) Updating files: 52% (5238/10072) Updating files: 53% (5339/10072) Updating files: 54% (5439/10072) Updating files: 55% (5540/10072) Updating files: 56% (5641/10072) Updating files: 57% (5742/10072) Updating files: 58% (5842/10072) Updating files: 59% (5943/10072) Updating files: 60% (6044/10072) Updating files: 61% (6144/10072) Updating files: 62% (6245/10072) Updating files: 63% (6346/10072) Updating files: 64% (6447/10072) Updating files: 65% (6547/10072) Updating files: 66% (6648/10072) Updating files: 67% (6749/10072) Updating files: 68% (6849/10072) Updating files: 69% (6950/10072) Updating files: 70% (7051/10072) Updating files: 71% (7152/10072) Updating files: 72% (7252/10072) Updating files: 73% (7353/10072) Updating files: 74% (7454/10072) Updating files: 75% (7554/10072) Updating files: 76% (7655/10072) Updating files: 77% (7756/10072) Updating files: 78% (7857/10072) Updating files: 79% (7957/10072) Updating files: 80% (8058/10072) Updating files: 81% (8159/10072) Updating files: 82% (8260/10072) Updating files: 83% (8360/10072) Updating files: 84% (8461/10072) Updating files: 85% (8562/10072) Updating files: 86% (8662/10072) Updating files: 87% (8763/10072) Updating files: 88% (8864/10072) Updating files: 89% (8965/10072) Updating files: 90% (9065/10072) Updating files: 91% (9166/10072) Updating files: 92% (9267/10072) Updating files: 93% (9367/10072) Updating files: 94% (9468/10072) Updating files: 95% (9569/10072) Updating files: 96% (9670/10072) Updating files: 97% (9770/10072) Updating files: 98% (9871/10072) Updating files: 99% (9972/10072) Updating files: 100% (10072/10072) Updating files: 100% (10072/10072), done. [rtd-command-info] start-time: 2026-07-01T19:30:08.200289Z, end-time: 2026-07-01T19:30:09.617658Z, duration: 1, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 refs/heads/master:refs/remotes/origin/master [rtd-command-info] start-time: 2026-07-01T19:30:10.447070Z, end-time: 2026-07-01T19:30:10.687405Z, duration: 0, exit-code: 0 git checkout --force origin/master Note: switching to 'origin/master'. 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 b7d4022 [doc] Add sphinx-fix skill to classify doc-build warnings (#64147) [rtd-command-info] start-time: 2026-07-01T19:30:10.765159Z, end-time: 2026-07-01T19:30:10.808882Z, 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.11" 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 # Override the html build step. On PR (external) builds, build incrementally # from the latest master doc cache, falling back to a clean build # (rtd-fallback) if it fails. PRs that delete or move doc sources skip the # incremental path: the restored cache can't prune the stale pages/stubs they # leave behind, and a clean rename wouldn't trip a warning to force the # fallback. The prune-on-restore fix is tracked in DOC-1314. Branch/tag builds # (master, stable, release tags) always do a full clean build so published # output is never stale. Targets live in doc/Makefile (rtd, rtd-fallback, html). build: html: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then if ! git diff --quiet --no-renames --diff-filter=D origin/master...HEAD -- doc/source/ 2>/dev/null; then echo "PR deletes or moves doc sources; the incremental cache cannot prune their stale pages, so building clean (DOC-1314)." make -C doc rtd-fallback HTMLDIR="$READTHEDOCS_OUTPUT/html" else echo "PR build; attempting incremental build from the master doc cache." make -C doc rtd HTMLDIR="$READTHEDOCS_OUTPUT/html" || make -C doc rtd-fallback HTMLDIR="$READTHEDOCS_OUTPUT/html" fi else echo "Branch/tag build; running a full clean build." make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" fi # 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-07-01T19:30:10.886035Z, end-time: 2026-07-01T19:30:10.925783Z, duration: 0, 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 Not a PR build (version type: branch); building docs. [rtd-command-info] start-time: 2026-07-01T19:30:16.324059Z, end-time: 2026-07-01T19:30:16.387731Z, duration: 0, exit-code: 0 asdf global python 3.11.15 [rtd-command-info] start-time: 2026-07-01T19:30:16.753572Z, end-time: 2026-07-01T19:30:17.351416Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.11.15.final.0-64 in 361ms creator CPython3Posix(dest=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master, 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