Read the Docs build information Build id: 4022419 Project: anyscale-ray Version: 63431 Commit: 325cadbd8dbd3abd46f96d0f5f4379991ab5769c Date: 2026-05-18T13:51:22.362566Z State: finished Success: False [rtd-command-info] start-time: 2026-05-18T13:51:23.067747Z, end-time: 2026-05-18T13:51:34.933874Z, duration: 11, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 22% (2313/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-18T13:51:35.017604Z, end-time: 2026-05-18T13:51:35.881740Z, 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-18T13:51:36.596605Z, end-time: 2026-05-18T13:51:38.023374Z, duration: 1, exit-code: 0 git checkout --force 325cadbd8dbd3abd46f96d0f5f4379991ab5769c Note: switching to '325cadbd8dbd3abd46f96d0f5f4379991ab5769c'. 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 325cadb [doc][ci] Skip RTD builds for PRs that don't touch doc sources [rtd-command-info] start-time: 2026-05-18T13:51:38.109458Z, end-time: 2026-05-18T13:51:38.148395Z, 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 git fetch --depth=500 origin master 2>/dev/null || true if git merge-base origin/master HEAD >/dev/null 2>&1; then CHANGED=$(git diff --name-only origin/master...HEAD) if [ -n "$CHANGED" ] && ! echo "$CHANGED" \ | grep -qE '^(doc/|python/ray/|rllib/|\.readthedocs\.yaml$)'; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" echo "$CHANGED" | sed 's/^/ /' exit 183 fi fi 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-18T13:51:38.235135Z, end-time: 2026-05-18T13:51:38.270433Z, duration: 0, exit-code: 2 if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then git fetch --depth=500 origin master 2>/dev/null || true if git merge-base origin/master HEAD >/dev/null 2>&1; then CHANGED=$(git diff --name-only origin/master...HEAD) if [ -n "$CHANGED" ] && ! echo "$CHANGED" \ | grep -qE '^(doc/|python/ray/|rllib/|\.readthedocs\.yaml$)'; then echo "No doc-affecting files changed; skipping Sphinx build." echo "Files changed in PR:" echo "$CHANGED" | sed 's/^/ /' exit 183 fi fi fi / exit 183 fi fi fi : 6: Syntax error: "(" unexpected (expecting "then")