Read the Docs build information Build id: 4022483 Project: anyscale-ray Version: 63431 Commit: 264f942ada151eb2d920cd1abc5d60623dc964d2 Date: 2026-05-18T14:16:27.251188Z State: finished Success: False [rtd-command-info] start-time: 2026-05-18T14:16:28.032261Z, end-time: 2026-05-18T14:16:40.205052Z, duration: 12, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 21% (2214/10436) Updating files: 22% (2296/10436) Updating files: 23% (2401/10436) Updating files: 24% (2505/10436) Updating files: 25% (2609/10436) Updating files: 26% (2714/10436) Updating files: 27% (2818/10436) Updating files: 28% (2923/10436) Updating files: 29% (3027/10436) Updating files: 30% (3131/10436) Updating files: 31% (3236/10436) Updating files: 32% (3340/10436) Updating files: 33% (3444/10436) Updating files: 34% (3549/10436) Updating files: 35% (3653/10436) Updating files: 36% (3757/10436) Updating files: 37% (3862/10436) Updating files: 38% (3966/10436) Updating files: 39% (4071/10436) Updating files: 40% (4175/10436) Updating files: 41% (4279/10436) Updating files: 42% (4384/10436) Updating files: 43% (4488/10436) Updating files: 44% (4592/10436) Updating files: 45% (4697/10436) Updating files: 46% (4801/10436) Updating files: 47% (4905/10436) Updating files: 48% (5010/10436) Updating files: 49% (5114/10436) Updating files: 50% (5218/10436) Updating files: 51% (5323/10436) Updating files: 52% (5427/10436) Updating files: 53% (5532/10436) Updating files: 54% (5636/10436) Updating files: 55% (5740/10436) Updating files: 56% (5845/10436) Updating files: 57% (5949/10436) Updating files: 58% (6053/10436) Updating files: 59% (6158/10436) Updating files: 60% (6262/10436) Updating files: 61% (6366/10436) Updating files: 62% (6471/10436) Updating files: 63% (6575/10436) Updating files: 64% (6680/10436) Updating files: 65% (6784/10436) Updating files: 66% (6888/10436) Updating files: 67% (6993/10436) Updating files: 68% (7097/10436) Updating files: 69% (7201/10436) Updating files: 70% (7306/10436) Updating files: 71% (7410/10436) Updating files: 72% (7514/10436) Updating files: 73% (7619/10436) Updating files: 74% (7723/10436) Updating files: 75% (7827/10436) Updating files: 76% (7932/10436) Updating files: 77% (8036/10436) Updating files: 78% (8141/10436) Updating files: 79% (8245/10436) Updating files: 80% (8349/10436) Updating files: 81% (8454/10436) Updating files: 82% (8558/10436) Updating files: 83% (8662/10436) Updating files: 84% (8767/10436) Updating files: 85% (8871/10436) Updating files: 86% (8975/10436) Updating files: 87% (9080/10436) Updating files: 88% (9184/10436) Updating files: 89% (9289/10436) Updating files: 90% (9393/10436) Updating files: 91% (9497/10436) Updating files: 92% (9602/10436) Updating files: 93% (9706/10436) Updating files: 94% (9810/10436) Updating files: 95% (9915/10436) Updating files: 96% (10019/10436) Updating files: 97% (10123/10436) Updating files: 98% (10228/10436) Updating files: 99% (10332/10436) Updating files: 100% (10436/10436) Updating files: 100% (10436/10436), done. [rtd-command-info] start-time: 2026-05-18T14:16:40.291719Z, end-time: 2026-05-18T14:16:41.434859Z, duration: 1, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/63431/head:external-63431 From https://github.com/ray-project/ray * [new ref] refs/pull/63431/head -> external-63431 [rtd-command-info] start-time: 2026-05-18T14:16:42.181548Z, end-time: 2026-05-18T14:16:42.473331Z, duration: 0, exit-code: 0 git checkout --force 264f942ada151eb2d920cd1abc5d60623dc964d2 Note: switching to '264f942ada151eb2d920cd1abc5d60623dc964d2'. 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 264f942 fixup: avoid grouped-regex inside $() to satisfy dash [rtd-command-info] start-time: 2026-05-18T14:16:42.551226Z, end-time: 2026-05-18T14:16:42.593710Z, 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, which # otherwise causes older queued builds to be marked "terminated due to # inactivity" before a worker picks them up. # # The set of doc-affecting paths is intentionally broad (includes all # autodoc'd Python packages) so non-doc PRs are the only ones skipped. # Tag/branch builds (master, stable, etc.) always run. # # https://docs.readthedocs.com/platform/stable/guides/build/skip-build.html post_checkout: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then 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 "No merge-base with origin/master; running full build." exit 0 fi CHANGED=$(git diff --name-only origin/master...HEAD) if [ -z "$CHANGED" ]; then exit 0 fi # Run each prefix check as its own pipeline. Combining them into a # single regex with `(a|b)` grouping inside a $(...) capture trips # Ubuntu's dash parser, which treats the inner `(` as a subshell # token even though it is single-quoted. DOC_CHANGED= printf '%s\n' "$CHANGED" | grep -qE '^doc/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^python/ray/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^rllib/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^\.readthedocs\.yaml$' && DOC_CHANGED=1 if [ -z "$DOC_CHANGED" ]; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" printf '%s\n' "$CHANGED" | sed 's/^/ /' exit 183 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: None, end-time: None, duration: None, exit-code: None if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then 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 "No merge-base with origin/master; running full build." exit 0 fi CHANGED=$(git diff --name-only origin/master...HEAD) if [ -z "$CHANGED" ]; then exit 0 fi # Run each prefix check as its own pipeline. Combining them into a # single regex with `(a|b)` grouping inside a $(...) capture trips # Ubuntu's dash parser, which treats the inner `(` as a subshell # token even though it is single-quoted. DOC_CHANGED= printf '%s\n' "$CHANGED" | grep -qE '^doc/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^python/ray/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^rllib/' && DOC_CHANGED=1 printf '%s\n' "$CHANGED" | grep -qE '^\.readthedocs\.yaml$' && DOC_CHANGED=1 if [ -z "$DOC_CHANGED" ]; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" printf '%s\n' "$CHANGED" | sed 's/^/ /' exit 183 fi