Read the Docs build information Build id: 4022448 Project: anyscale-ray Version: 63431 Commit: 31137246c2b69fd1a7da3c15265281c8f064f6a1 Date: 2026-05-18T14:00:23.061078Z State: finished Success: False [rtd-command-info] start-time: 2026-05-18T14:00:23.765684Z, end-time: 2026-05-18T14:00:37.082942Z, duration: 13, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 28% (3008/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:00:37.163309Z, end-time: 2026-05-18T14:00:37.940126Z, duration: 0, 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:00:38.588555Z, end-time: 2026-05-18T14:00:38.722325Z, duration: 0, exit-code: 0 git checkout --force 31137246c2b69fd1a7da3c15265281c8f064f6a1 Note: switching to '31137246c2b69fd1a7da3c15265281c8f064f6a1'. 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 3113724 fixup: flatten skip-logic shell for POSIX sh [rtd-command-info] start-time: 2026-05-18T14:00:38.803389Z, end-time: 2026-05-18T14:00:38.839257Z, 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 DOC_CHANGED=$(printf '%s\n' "$CHANGED" | grep -E '^(doc/|python/ray/|rllib/|\.readthedocs\.yaml$)' || true) 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: 2026-05-18T14:00:38.925379Z, end-time: 2026-05-18T14:00:42.068004Z, duration: 3, exit-code: 2 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 DOC_CHANGED=$(printf '%s\n' "$CHANGED" | grep -E '^(doc/|python/ray/|rllib/|\.readthedocs\.yaml$)' || true) 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 / exit 183 fi : 13: Syntax error: "(" unexpected (expecting ")")