Read the Docs build information Build id: 4150897 Project: anyscale-ray Version: master Commit: 6627f783f9c7ceda1615eb647cb4dc10caf5e887 Date: 2026-06-26T16:50:03.121505Z State: cancelled Success: False [rtd-command-info] start-time: 2026-06-26T16:50:03.932287Z, end-time: 2026-06-26T16:50:17.131829Z, duration: 13, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 39% (4007/10033) Updating files: 40% (4014/10033) Updating files: 41% (4114/10033) Updating files: 42% (4214/10033) Updating files: 43% (4315/10033) Updating files: 44% (4415/10033) Updating files: 45% (4515/10033) Updating files: 46% (4616/10033) Updating files: 47% (4716/10033) Updating files: 48% (4816/10033) Updating files: 49% (4917/10033) Updating files: 50% (5017/10033) Updating files: 51% (5117/10033) Updating files: 52% (5218/10033) Updating files: 53% (5318/10033) Updating files: 54% (5418/10033) Updating files: 55% (5519/10033) Updating files: 56% (5619/10033) Updating files: 57% (5719/10033) Updating files: 58% (5820/10033) Updating files: 59% (5920/10033) Updating files: 60% (6020/10033) Updating files: 61% (6121/10033) Updating files: 62% (6221/10033) Updating files: 63% (6321/10033) Updating files: 64% (6422/10033) Updating files: 65% (6522/10033) Updating files: 66% (6622/10033) Updating files: 67% (6723/10033) Updating files: 68% (6823/10033) Updating files: 69% (6923/10033) Updating files: 70% (7024/10033) Updating files: 71% (7124/10033) Updating files: 72% (7224/10033) Updating files: 73% (7325/10033) Updating files: 74% (7425/10033) Updating files: 75% (7525/10033) Updating files: 76% (7626/10033) Updating files: 77% (7726/10033) Updating files: 78% (7826/10033) Updating files: 79% (7927/10033) Updating files: 80% (8027/10033) Updating files: 81% (8127/10033) Updating files: 82% (8228/10033) Updating files: 83% (8328/10033) Updating files: 84% (8428/10033) Updating files: 85% (8529/10033) Updating files: 86% (8629/10033) Updating files: 87% (8729/10033) Updating files: 88% (8830/10033) Updating files: 89% (8930/10033) Updating files: 90% (9030/10033) Updating files: 91% (9131/10033) Updating files: 92% (9231/10033) Updating files: 93% (9331/10033) Updating files: 94% (9432/10033) Updating files: 95% (9532/10033) Updating files: 96% (9632/10033) Updating files: 97% (9733/10033) Updating files: 98% (9833/10033) Updating files: 99% (9933/10033) Updating files: 100% (10033/10033) Updating files: 100% (10033/10033), done. [rtd-command-info] start-time: 2026-06-26T16:50:17.223442Z, end-time: 2026-06-26T16:50:17.908688Z, duration: 0, 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-06-26T16:50:18.626108Z, end-time: 2026-06-26T16:50:18.832596Z, 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 6627f78 [Data] DataSourceV2: row-group-aware Parquet chunking (#64301) [rtd-command-info] start-time: 2026-06-26T16:50:18.918499Z, end-time: 2026-06-26T16:50:18.957280Z, 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, restore the latest # master build cache and build incrementally so only PR-changed files are # rebuilt; fall back to a clean build (rtd-fallback) if the incremental build # fails. On branch/tag builds (master, stable, release tags) always do a full # clean build so the published output is never stale. Targets live in # doc/Makefile (rtd, rtd-fallback, html). build: html: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then 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" 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-06-26T16:50:19.043136Z, end-time: 2026-06-26T16:50:19.081058Z, 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-06-26T16:50:24.225168Z, end-time: 2026-06-26T16:50:24.280518Z, duration: 0, exit-code: 0 asdf global python 3.11.14 [rtd-command-info] start-time: 2026-06-26T16:50:24.688809Z, end-time: 2026-06-26T16:50:25.162886Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.11.14.final.0-64 in 253ms 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: 2026-06-26T16:50:25.245469Z, end-time: 2026-06-26T16:50:28.181717Z, duration: 2, exit-code: 0 python -m pip install --upgrade --no-cache-dir pip setuptools Requirement already satisfied: pip in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (23.1) Collecting pip Downloading pip-26.1.2-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 22.0 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (67.6.1) Collecting setuptools Downloading setuptools-82.0.1-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 35.0 MB/s eta 0:00:00 Installing collected packages: setuptools, pip Attempting uninstall: setuptools Found existing installation: setuptools 67.6.1 Uninstalling setuptools-67.6.1: Successfully uninstalled setuptools-67.6.1 Attempting uninstall: pip Found existing installation: pip 23.1 Uninstalling pip-23.1: Successfully uninstalled pip-23.1 Successfully installed pip-26.1.2 setuptools-82.0.1 [rtd-command-info] start-time: 2026-06-26T16:50:28.280245Z, end-time: 2026-06-26T16:50:32.179715Z, duration: 3, exit-code: 0 python -m pip install --upgrade --no-cache-dir sphinx Collecting sphinx Downloading sphinx-9.0.4-py3-none-any.whl.metadata (5.8 kB) Collecting sphinxcontrib-applehelp>=1.0.7 (from sphinx) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-devhelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-htmlhelp>=2.0.6 (from sphinx) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-jsmath>=1.0.1 (from sphinx) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl.metadata (1.4 kB) Collecting sphinxcontrib-qthelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-serializinghtml>=1.1.9 (from sphinx) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl.metadata (2.4 kB) Collecting Jinja2>=3.1 (from sphinx) Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) Collecting Pygments>=2.17 (from sphinx) Downloading pygments-2.20.0-py3-none-any.whl.metadata (2.5 kB) Collecting docutils<0.23,>=0.20 (from sphinx) Downloading docutils-0.22.4-py3-none-any.whl.metadata (15 kB) Collecting snowballstemmer>=2.2 (from sphinx) Downloading snowballstemmer-3.1.1-py3-none-any.whl.metadata (7.9 kB) Collecting babel>=2.13 (from sphinx) Downloading babel-2.18.0-py3-none-any.whl.metadata (2.2 kB) Collecting alabaster>=0.7.14 (from sphinx) Downloading alabaster-1.0.0-py3-none-any.whl.metadata (2.8 kB) Collecting imagesize>=1.3 (from sphinx) Downloading imagesize-2.0.0-py2.py3-none-any.whl.metadata (1.5 kB) Collecting requests>=2.30.0 (from sphinx) Downloading requests-2.34.2-py3-none-any.whl.metadata (4.8 kB) Collecting roman-numerals>=1.0.0 (from sphinx) Downloading roman_numerals-4.1.0-py3-none-any.whl.metadata (3.3 kB) Collecting packaging>=23.0 (from sphinx) Downloading packaging-26.2-py3-none-any.whl.metadata (3.5 kB) Collecting MarkupSafe>=2.0 (from Jinja2>=3.1->sphinx) Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB) Collecting charset_normalizer<4,>=2 (from requests>=2.30.0->sphinx) Downloading charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (40 kB) Collecting idna<4,>=2.5 (from requests>=2.30.0->sphinx) Downloading idna-3.18-py3-none-any.whl.metadata (6.1 kB) Collecting urllib3<3,>=1.26 (from requests>=2.30.0->sphinx) Downloading urllib3-2.7.0-py3-none-any.whl.metadata (6.9 kB) Collecting certifi>=2023.5.7 (from requests>=2.30.0->sphinx) Downloading certifi-2026.6.17-py3-none-any.whl.metadata (2.5 kB) Downloading sphinx-9.0.4-py3-none-any.whl (3.9 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/3.9 MB 136.2 MB/s 0:00:00 Downloading docutils-0.22.4-py3-none-any.whl (633 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 633.2/633.2 kB 943.8 MB/s 0:00:00 Downloading alabaster-1.0.0-py3-none-any.whl (13 kB) Downloading babel-2.18.0-py3-none-any.whl (10.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 395.6 MB/s 0:00:00 Downloading imagesize-2.0.0-py2.py3-none-any.whl (9.4 kB) Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22 kB) Downloading packaging-26.2-py3-none-any.whl (100 kB) Downloading pygments-2.20.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 351.1 MB/s 0:00:00 Downloading requests-2.34.2-py3-none-any.whl (73 kB) Downloading charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (214 kB) Downloading idna-3.18-py3-none-any.whl (65 kB) Downloading urllib3-2.7.0-py3-none-any.whl (131 kB) Downloading certifi-2026.6.17-py3-none-any.whl (133 kB) Downloading roman_numerals-4.1.0-py3-none-any.whl (7.7 kB) Downloading snowballstemmer-3.1.1-py3-none-any.whl (104 kB) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl (119 kB) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl (82 kB) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl (98 kB) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl (5.1 kB) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl (88 kB) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl (92 kB) Installing collected packages: urllib3, sphinxcontrib-serializinghtml, sphinxcontrib-qthelp, sphinxcontrib-jsmath, sphinxcontrib-htmlhelp, sphinxcontrib-devhelp, sphinxcontrib-applehelp, snowballstemmer, roman-numerals, Pygments, packaging, MarkupSafe, imagesize, idna, docutils, charset_normalizer, certifi, babel, alabaster, requests, Jinja2, sphinx Successfully installed Jinja2-3.1.6 MarkupSafe-3.0.3 Pygments-2.20.0 alabaster-1.0.0 babel-2.18.0 certifi-2026.6.17 charset_normalizer-3.4.7 docutils-0.22.4 idna-3.18 imagesize-2.0.0 packaging-26.2 requests-2.34.2 roman-numerals-4.1.0 snowballstemmer-3.1.1 sphinx-9.0.4 sphinxcontrib-applehelp-2.0.0 sphinxcontrib-devhelp-2.0.0 sphinxcontrib-htmlhelp-2.1.0 sphinxcontrib-jsmath-1.0.1 sphinxcontrib-qthelp-2.0.0 sphinxcontrib-serializinghtml-2.0.0 urllib3-2.7.0 [rtd-command-info] start-time: 2026-06-26T16:50:32.270626Z, end-time: 2026-06-26T16:51:12.854590Z, duration: 40, exit-code: 0 python -m pip install --exists-action=w --no-cache-dir -r doc/requirements-doc.lock.txt Collecting absl-py==2.4.0 (from -r doc/requirements-doc.lock.txt (line 3)) Downloading absl_py-2.4.0-py3-none-any.whl (135 kB) Collecting accessible-pygments==0.0.5 (from -r doc/requirements-doc.lock.txt (line 10)) Downloading accessible_pygments-0.0.5-py3-none-any.whl (1.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 14.4 MB/s 0:00:00 Requirement already satisfied: alabaster==1.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 14)) (1.0.0) Collecting annotated-types==0.7.0 (from -r doc/requirements-doc.lock.txt (line 18)) Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) Collecting anyio==4.13.0 (from -r doc/requirements-doc.lock.txt (line 22)) Downloading anyio-4.13.0-py3-none-any.whl (114 kB) Collecting appnope==0.1.4 (from -r doc/requirements-doc.lock.txt (line 28)) Downloading appnope-0.1.4-py2.py3-none-any.whl (4.3 kB) Collecting asttokens==3.0.1 (from -r doc/requirements-doc.lock.txt (line 32)) Downloading asttokens-3.0.1-py3-none-any.whl (27 kB) Collecting astunparse==1.6.3 (from -r doc/requirements-doc.lock.txt (line 36)) Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) Collecting attrs==26.1.0 (from -r doc/requirements-doc.lock.txt (line 40)) Downloading attrs-26.1.0-py3-none-any.whl (67 kB) Collecting autodoc-pydantic==2.2.0 (from -r doc/requirements-doc.lock.txt (line 47)) Downloading autodoc_pydantic-2.2.0-py3-none-any.whl (34 kB) Requirement already satisfied: babel==2.18.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 50)) (2.18.0) Collecting beautifulsoup4==4.15.0 (from -r doc/requirements-doc.lock.txt (line 56)) Downloading beautifulsoup4-4.15.0-py3-none-any.whl (109 kB) Collecting boto3==1.34.69 (from -r doc/requirements-doc.lock.txt (line 60)) Downloading boto3-1.34.69-py3-none-any.whl (139 kB) Collecting botocore==1.34.162 (from -r doc/requirements-doc.lock.txt (line 64)) Downloading botocore-1.34.162-py3-none-any.whl (12.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.5/12.5 MB 44.5 MB/s 0:00:00 Collecting certifi==2026.5.20 (from -r doc/requirements-doc.lock.txt (line 70)) Downloading certifi-2026.5.20-py3-none-any.whl (134 kB) Requirement already satisfied: charset-normalizer==3.4.7 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 74)) (3.4.7) Collecting click==8.1.7 (from -r doc/requirements-doc.lock.txt (line 205)) Downloading click-8.1.7-py3-none-any.whl (97 kB) Collecting colorama==0.4.6 (from -r doc/requirements-doc.lock.txt (line 213)) Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) Collecting comm==0.2.3 (from -r doc/requirements-doc.lock.txt (line 217)) Downloading comm-0.2.3-py3-none-any.whl (7.3 kB) Collecting debugpy==1.8.21 (from -r doc/requirements-doc.lock.txt (line 221)) Downloading debugpy-1.8.21-cp311-cp311-manylinux_2_34_x86_64.whl (3.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 90.6 MB/s 0:00:00 Collecting decorator==5.3.1 (from -r doc/requirements-doc.lock.txt (line 253)) Downloading decorator-5.3.1-py3-none-any.whl (10 kB) Collecting docutils==0.21.2 (from -r doc/requirements-doc.lock.txt (line 257)) Downloading docutils-0.21.2-py3-none-any.whl (587 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 587.4/587.4 kB 386.6 MB/s 0:00:00 Collecting executing==2.2.1 (from -r doc/requirements-doc.lock.txt (line 266)) Downloading executing-2.2.1-py2.py3-none-any.whl (28 kB) Collecting fastjsonschema==2.21.2 (from -r doc/requirements-doc.lock.txt (line 270)) Downloading fastjsonschema-2.21.2-py3-none-any.whl (24 kB) Collecting flatbuffers==25.12.19 (from -r doc/requirements-doc.lock.txt (line 274)) Downloading flatbuffers-25.12.19-py2.py3-none-any.whl (26 kB) Collecting gast==0.7.0 (from -r doc/requirements-doc.lock.txt (line 277)) Downloading gast-0.7.0-py3-none-any.whl (22 kB) Collecting gitdb==4.0.12 (from -r doc/requirements-doc.lock.txt (line 281)) Downloading gitdb-4.0.12-py3-none-any.whl (62 kB) Collecting gitpython==3.1.50 (from -r doc/requirements-doc.lock.txt (line 285)) Downloading gitpython-3.1.50-py3-none-any.whl (212 kB) Collecting google-pasta==0.2.0 (from -r doc/requirements-doc.lock.txt (line 289)) Downloading google_pasta-0.2.0-py3-none-any.whl (57 kB) Collecting greenlet==3.5.1 (from -r doc/requirements-doc.lock.txt (line 294)) Downloading greenlet-3.5.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (614 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 614.8/614.8 kB 134.5 MB/s 0:00:00 Collecting grpcio==1.81.0 (from -r doc/requirements-doc.lock.txt (line 375)) Downloading grpcio-1.81.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/6.8 MB 124.8 MB/s 0:00:00 Collecting h11==0.16.0 (from -r doc/requirements-doc.lock.txt (line 430)) Downloading h11-0.16.0-py3-none-any.whl (37 kB) Collecting h5py==3.16.0 (from -r doc/requirements-doc.lock.txt (line 434)) Downloading h5py-3.16.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 172.2 MB/s 0:00:00 Requirement already satisfied: idna==3.18 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 486)) (3.18) Requirement already satisfied: imagesize==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 492)) (2.0.0) Collecting importlib-metadata==9.0.0 (from -r doc/requirements-doc.lock.txt (line 496)) Downloading importlib_metadata-9.0.0-py3-none-any.whl (27 kB) Collecting ipykernel==7.3.0 (from -r doc/requirements-doc.lock.txt (line 502)) Downloading ipykernel-7.3.0-py3-none-any.whl (120 kB) Collecting ipython==9.14.1 (from -r doc/requirements-doc.lock.txt (line 506)) Downloading ipython-9.14.1-py3-none-any.whl (627 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 627.8/627.8 kB 334.9 MB/s 0:00:00 Collecting ipython-pygments-lexers==1.1.1 (from -r doc/requirements-doc.lock.txt (line 512)) Downloading ipython_pygments_lexers-1.1.1-py3-none-any.whl (8.1 kB) Collecting jedi==0.20.0 (from -r doc/requirements-doc.lock.txt (line 516)) Downloading jedi-0.20.0-py2.py3-none-any.whl (4.9 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/4.9 MB 186.8 MB/s 0:00:00 Requirement already satisfied: jinja2==3.1.6 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 520)) (3.1.6) Collecting jmespath==1.1.0 (from -r doc/requirements-doc.lock.txt (line 528)) Downloading jmespath-1.1.0-py3-none-any.whl (20 kB) Collecting jsonpointer==3.1.1 (from -r doc/requirements-doc.lock.txt (line 534)) Downloading jsonpointer-3.1.1-py3-none-any.whl (7.7 kB) Collecting jsonschema==4.26.0 (from -r doc/requirements-doc.lock.txt (line 538)) Downloading jsonschema-4.26.0-py3-none-any.whl (90 kB) Collecting jsonschema-specifications==2025.9.1 (from -r doc/requirements-doc.lock.txt (line 544)) Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl (18 kB) Collecting jupyter-cache==1.0.1 (from -r doc/requirements-doc.lock.txt (line 548)) Downloading jupyter_cache-1.0.1-py3-none-any.whl (33 kB) Collecting jupyter-client==8.9.1 (from -r doc/requirements-doc.lock.txt (line 552)) Downloading jupyter_client-8.9.1-py3-none-any.whl (109 kB) Collecting jupyter-core==5.9.1 (from -r doc/requirements-doc.lock.txt (line 558)) Downloading jupyter_core-5.9.1-py3-none-any.whl (29 kB) Collecting jupytext==1.15.2 (from -r doc/requirements-doc.lock.txt (line 566)) Downloading jupytext-1.15.2-py3-none-any.whl (307 kB) Collecting keras==3.14.1 (from -r doc/requirements-doc.lock.txt (line 570)) Downloading keras-3.14.1-py3-none-any.whl (1.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 265.8 MB/s 0:00:00 Collecting libclang==18.1.1 (from -r doc/requirements-doc.lock.txt (line 574)) Downloading libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl (24.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.5/24.5 MB 275.4 MB/s 0:00:00 Collecting markdown==3.10.2 (from -r doc/requirements-doc.lock.txt (line 586)) Downloading markdown-3.10.2-py3-none-any.whl (108 kB) Collecting markdown-it-py==4.2.0 (from -r doc/requirements-doc.lock.txt (line 590)) Downloading markdown_it_py-4.2.0-py3-none-any.whl (91 kB) Requirement already satisfied: markupsafe==3.0.3 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 598)) (3.0.3) Collecting matplotlib-inline==0.2.2 (from -r doc/requirements-doc.lock.txt (line 691)) Downloading matplotlib_inline-0.2.2-py3-none-any.whl (9.5 kB) Collecting mdit-py-plugins==0.6.1 (from -r doc/requirements-doc.lock.txt (line 697)) Downloading mdit_py_plugins-0.6.1-py3-none-any.whl (66 kB) Collecting mdurl==0.1.2 (from -r doc/requirements-doc.lock.txt (line 703)) Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) Collecting ml-dtypes==0.5.4 (from -r doc/requirements-doc.lock.txt (line 707)) Downloading ml_dtypes-0.5.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 390.6 MB/s 0:00:00 Collecting myst-nb==1.4.0 (from -r doc/requirements-doc.lock.txt (line 750)) Downloading myst_nb-1.4.0-py3-none-any.whl (82 kB) Collecting myst-parser==5.1.0 (from -r doc/requirements-doc.lock.txt (line 754)) Downloading myst_parser-5.1.0-py3-none-any.whl (85 kB) Collecting namex==0.1.0 (from -r doc/requirements-doc.lock.txt (line 760)) Downloading namex-0.1.0-py3-none-any.whl (5.9 kB) Collecting nbclient==0.11.0 (from -r doc/requirements-doc.lock.txt (line 764)) Downloading nbclient-0.11.0-py3-none-any.whl (25 kB) Collecting nbformat==5.10.4 (from -r doc/requirements-doc.lock.txt (line 770)) Downloading nbformat-5.10.4-py3-none-any.whl (78 kB) Collecting nest-asyncio2==1.7.2 (from -r doc/requirements-doc.lock.txt (line 778)) Downloading nest_asyncio2-1.7.2-py3-none-any.whl (7.8 kB) Collecting numpy==2.4.6 (from -r doc/requirements-doc.lock.txt (line 782)) Downloading numpy-2.4.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.9 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.9/16.9 MB 444.2 MB/s 0:00:00 Collecting opt-einsum==3.4.0 (from -r doc/requirements-doc.lock.txt (line 861)) Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) Collecting optree==0.19.1 (from -r doc/requirements-doc.lock.txt (line 865)) Downloading optree-0.19.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (447 kB) Requirement already satisfied: packaging==26.2 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 965)) (26.2) Collecting parso==0.8.7 (from -r doc/requirements-doc.lock.txt (line 976)) Downloading parso-0.8.7-py2.py3-none-any.whl (107 kB) Collecting pexpect==4.9.0 (from -r doc/requirements-doc.lock.txt (line 980)) Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB) Collecting pillow==12.2.0 (from -r doc/requirements-doc.lock.txt (line 984)) Downloading pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (7.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.1/7.1 MB 520.7 MB/s 0:00:00 Collecting platformdirs==4.10.0 (from -r doc/requirements-doc.lock.txt (line 1077)) Downloading platformdirs-4.10.0-py3-none-any.whl (22 kB) Collecting prompt-toolkit==3.0.52 (from -r doc/requirements-doc.lock.txt (line 1081)) Downloading prompt_toolkit-3.0.52-py3-none-any.whl (391 kB) Collecting protobuf==7.35.0 (from -r doc/requirements-doc.lock.txt (line 1085)) Downloading protobuf-7.35.0-cp310-abi3-manylinux2014_x86_64.whl (327 kB) Collecting psutil==7.2.2 (from -r doc/requirements-doc.lock.txt (line 1097)) Downloading psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (155 kB) Collecting ptyprocess==0.7.0 (from -r doc/requirements-doc.lock.txt (line 1122)) Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB) Collecting pure-eval==0.2.3 (from -r doc/requirements-doc.lock.txt (line 1126)) Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB) Collecting pyarrow==19.0.1 (from -r doc/requirements-doc.lock.txt (line 1130)) Downloading pyarrow-19.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (42.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 551.8 MB/s 0:00:00 Collecting pydantic==2.12.4 (from -r doc/requirements-doc.lock.txt (line 1174)) Downloading pydantic-2.12.4-py3-none-any.whl (463 kB) Collecting pydantic-core==2.41.5 (from -r doc/requirements-doc.lock.txt (line 1181)) Downloading pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 816.1 MB/s 0:00:00 Collecting pydantic-settings==2.14.1 (from -r doc/requirements-doc.lock.txt (line 1304)) Downloading pydantic_settings-2.14.1-py3-none-any.whl (60 kB) Collecting pydata-sphinx-theme==0.18.0 (from -r doc/requirements-doc.lock.txt (line 1308)) Downloading pydata_sphinx_theme-0.18.0-py3-none-any.whl (6.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 406.1 MB/s 0:00:00 Collecting pygments==2.18.0 (from -r doc/requirements-doc.lock.txt (line 1312)) Downloading pygments-2.18.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 790.5 MB/s 0:00:00 Collecting python-dateutil==2.9.0.post0 (from -r doc/requirements-doc.lock.txt (line 1323)) Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) Collecting python-dotenv==1.2.2 (from -r doc/requirements-doc.lock.txt (line 1329)) Downloading python_dotenv-1.2.2-py3-none-any.whl (22 kB) Collecting pyyaml==6.0.3 (from -r doc/requirements-doc.lock.txt (line 1333)) Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (806 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 806.6/806.6 kB 987.5 MB/s 0:00:00 Collecting pyzmq==27.1.0 (from -r doc/requirements-doc.lock.txt (line 1414)) Downloading pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (857 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 857.0/857.0 kB 56.0 MB/s 0:00:00 Collecting referencing==0.37.0 (from -r doc/requirements-doc.lock.txt (line 1510)) Downloading referencing-0.37.0-py3-none-any.whl (26 kB) Collecting requests==2.32.5 (from -r doc/requirements-doc.lock.txt (line 1516)) Downloading requests-2.32.5-py3-none-any.whl (64 kB) Collecting rich==15.0.0 (from -r doc/requirements-doc.lock.txt (line 1524)) Downloading rich-15.0.0-py3-none-any.whl (310 kB) Requirement already satisfied: roman-numerals==4.1.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1528)) (4.1.0) Collecting roman-numerals-py==4.1.0 (from -r doc/requirements-doc.lock.txt (line 1532)) Downloading roman_numerals_py-4.1.0-py3-none-any.whl (4.5 kB) Collecting rpds-py==2026.5.1 (from -r doc/requirements-doc.lock.txt (line 1536)) Downloading rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378 kB) Collecting s3transfer==0.10.4 (from -r doc/requirements-doc.lock.txt (line 1670)) Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) Collecting setuptools==80.9.0 (from -r doc/requirements-doc.lock.txt (line 1674)) Downloading setuptools-80.9.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 970.7 MB/s 0:00:00 Collecting six==1.17.0 (from -r doc/requirements-doc.lock.txt (line 1681)) Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) Collecting smmap==5.0.3 (from -r doc/requirements-doc.lock.txt (line 1690)) Downloading smmap-5.0.3-py3-none-any.whl (24 kB) Requirement already satisfied: snowballstemmer==3.1.1 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1694)) (3.1.1) Collecting soupsieve==2.8.4 (from -r doc/requirements-doc.lock.txt (line 1698)) Downloading soupsieve-2.8.4-py3-none-any.whl (37 kB) Collecting sphinx==8.2.3 (from -r doc/requirements-doc.lock.txt (line 1702)) Downloading sphinx-8.2.3-py3-none-any.whl (3.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 294.3 MB/s 0:00:00 Collecting sphinx-autobuild==2024.4.16 (from -r doc/requirements-doc.lock.txt (line 1723)) Downloading sphinx_autobuild-2024.4.16-py3-none-any.whl (11 kB) Collecting sphinx-click==5.1.0 (from -r doc/requirements-doc.lock.txt (line 1727)) Downloading sphinx_click-5.1.0-py3-none-any.whl (9.7 kB) Collecting sphinx-collections==0.3.1 (from -r doc/requirements-doc.lock.txt (line 1731)) Downloading sphinx_collections-0.3.1-py3-none-any.whl (16 kB) Collecting sphinx-copybutton==0.5.2 (from -r doc/requirements-doc.lock.txt (line 1735)) Downloading sphinx_copybutton-0.5.2-py3-none-any.whl (13 kB) Collecting sphinx-design==0.7.0 (from -r doc/requirements-doc.lock.txt (line 1739)) Downloading sphinx_design-0.7.0-py3-none-any.whl (2.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 477.0 MB/s 0:00:00 Collecting sphinx-docsearch==0.3.0 (from -r doc/requirements-doc.lock.txt (line 1743)) Downloading sphinx_docsearch-0.3.0-py3-none-any.whl (141 kB) Collecting sphinx-jsonschema==1.19.2 (from -r doc/requirements-doc.lock.txt (line 1747)) Downloading sphinx_jsonschema-1.19.2.tar.gz (30 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Collecting sphinx-last-updated-by-git==0.3.8 (from -r doc/requirements-doc.lock.txt (line 1750)) Downloading sphinx_last_updated_by_git-0.3.8-py3-none-any.whl (8.6 kB) Collecting sphinx-llms-txt==0.7.1 (from -r doc/requirements-doc.lock.txt (line 1754)) Downloading sphinx_llms_txt-0.7.1-py3-none-any.whl (22 kB) Collecting sphinx-remove-toctrees==0.0.3 (from -r doc/requirements-doc.lock.txt (line 1758)) Downloading sphinx_remove_toctrees-0.0.3-py3-none-any.whl (4.7 kB) Collecting sphinx-sitemap==2.9.0 (from -r doc/requirements-doc.lock.txt (line 1762)) Downloading sphinx_sitemap-2.9.0-py3-none-any.whl (6.2 kB) Requirement already satisfied: sphinxcontrib-applehelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1766)) (2.0.0) Requirement already satisfied: sphinxcontrib-devhelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1770)) (2.0.0) Requirement already satisfied: sphinxcontrib-htmlhelp==2.1.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1774)) (2.1.0) Requirement already satisfied: sphinxcontrib-jsmath==1.0.1 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1778)) (1.0.1) Requirement already satisfied: sphinxcontrib-qthelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1782)) (2.0.0) Collecting sphinxcontrib-redoc==1.6.0 (from -r doc/requirements-doc.lock.txt (line 1786)) Downloading sphinxcontrib-redoc-1.6.0.tar.gz (350 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Requirement already satisfied: sphinxcontrib-serializinghtml==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/master/lib/python3.11/site-packages (from -r doc/requirements-doc.lock.txt (line 1789)) (2.0.0) Collecting sphinxemoji==0.3.2 (from -r doc/requirements-doc.lock.txt (line 1793)) Downloading sphinxemoji-0.3.2-py3-none-any.whl (45 kB) Collecting sphinxext-opengraph==0.13.0 (from -r doc/requirements-doc.lock.txt (line 1797)) Downloading sphinxext_opengraph-0.13.0-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 911.4 MB/s 0:00:00 Collecting sqlalchemy==2.0.50 (from -r doc/requirements-doc.lock.txt (line 1801)) Downloading sqlalchemy-2.0.50-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 195.3 MB/s 0:00:00 Collecting stack-data==0.6.3 (from -r doc/requirements-doc.lock.txt (line 1861)) Downloading stack_data-0.6.3-py3-none-any.whl (24 kB) Collecting starlette==1.2.1 (from -r doc/requirements-doc.lock.txt (line 1865)) Downloading starlette-1.2.1-py3-none-any.whl (73 kB) Collecting tabulate==0.10.0 (from -r doc/requirements-doc.lock.txt (line 1869)) Downloading tabulate-0.10.0-py3-none-any.whl (39 kB) Collecting tensorboard==2.20.0 (from -r doc/requirements-doc.lock.txt (line 1873)) Downloading tensorboard-2.20.0-py3-none-any.whl (5.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/5.5 MB 344.1 MB/s 0:00:00 Collecting tensorboard-data-server==0.7.2 (from -r doc/requirements-doc.lock.txt (line 1876)) Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/6.6 MB 506.0 MB/s 0:00:00 Collecting tensorflow==2.20.0 (from -r doc/requirements-doc.lock.txt (line 1881)) Downloading tensorflow-2.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 620.6/620.6 MB 336.2 MB/s 0:00:01 Collecting termcolor==3.3.0 (from -r doc/requirements-doc.lock.txt (line 1905)) Downloading termcolor-3.3.0-py3-none-any.whl (7.7 kB) Collecting tf-keras==2.20.1 (from -r doc/requirements-doc.lock.txt (line 1909)) Downloading tf_keras-2.20.1-py3-none-any.whl (1.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 319.1 MB/s 0:00:00 Collecting toml==0.10.2 (from -r doc/requirements-doc.lock.txt (line 1913)) Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting tornado==6.5.7 (from -r doc/requirements-doc.lock.txt (line 1917)) Downloading tornado-6.5.7-cp39-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (449 kB) Collecting traitlets==5.15.1 (from -r doc/requirements-doc.lock.txt (line 1931)) Downloading traitlets-5.15.1-py3-none-any.whl (85 kB) Collecting typing-extensions==4.15.0 (from -r doc/requirements-doc.lock.txt (line 1942)) Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB) Collecting typing-inspection==0.4.2 (from -r doc/requirements-doc.lock.txt (line 1961)) Downloading typing_inspection-0.4.2-py3-none-any.whl (14 kB) Collecting urllib3==1.26.20 (from -r doc/requirements-doc.lock.txt (line 1967)) Downloading urllib3-1.26.20-py2.py3-none-any.whl (144 kB) Collecting uvicorn==0.49.0 (from -r doc/requirements-doc.lock.txt (line 1974)) Downloading uvicorn-0.49.0-py3-none-any.whl (71 kB) Collecting watchfiles==1.2.0 (from -r doc/requirements-doc.lock.txt (line 1978)) Downloading watchfiles-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456 kB) Collecting wcwidth==0.8.1 (from -r doc/requirements-doc.lock.txt (line 2087)) Downloading wcwidth-0.8.1-py3-none-any.whl (323 kB) Collecting websockets==16.0 (from -r doc/requirements-doc.lock.txt (line 2091)) Downloading websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (184 kB) Collecting werkzeug==3.1.8 (from -r doc/requirements-doc.lock.txt (line 2154)) Downloading werkzeug-3.1.8-py3-none-any.whl (226 kB) Collecting wheel==0.47.0 (from -r doc/requirements-doc.lock.txt (line 2158)) Downloading wheel-0.47.0-py3-none-any.whl (32 kB) Collecting wrapt==2.2.1 (from -r doc/requirements-doc.lock.txt (line 2162)) Downloading wrapt-2.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159 kB) Collecting xmltodict==0.13.0 (from -r doc/requirements-doc.lock.txt (line 2254)) Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) Collecting zipp==4.1.0 (from -r doc/requirements-doc.lock.txt (line 2258)) Downloading zipp-4.1.0-py3-none-any.whl (10 kB) Building wheels for collected packages: sphinx-jsonschema, sphinxcontrib-redoc Building wheel for sphinx-jsonschema (pyproject.toml): started Building wheel for sphinx-jsonschema (pyproject.toml): finished with status 'done' Created wheel for sphinx-jsonschema: filename=sphinx_jsonschema-1.19.2-py3-none-any.whl size=27877 sha256=33741e37df1a8e8ec69f24ae346745435e370acf03fbb57981020ec31b10aae9 Stored in directory: /tmp/pip-ephem-wheel-cache-h9fsu3z9/wheels/ba/c0/f7/4c4fe0e65cd03c0887c1d7bef4c7ed0036c8e102ed6f757a18 Building wheel for sphinxcontrib-redoc (pyproject.toml): started Building wheel for sphinxcontrib-redoc (pyproject.toml): finished with status 'done' Created wheel for sphinxcontrib-redoc: filename=sphinxcontrib_redoc-1.6.0-py3-none-any.whl size=299648 sha256=99d50fa8b729f70e9b106fede5520097362e551a86cf90f6826e0526d30fadbd Stored in directory: /tmp/pip-ephem-wheel-cache-h9fsu3z9/wheels/a1/90/66/d015c821e6e8b2de75d210826c4983325ebb344834965e8730 Successfully built sphinx-jsonschema sphinxcontrib-redoc Installing collected packages: pure-eval, ptyprocess, namex, libclang, flatbuffers, fastjsonschema, zipp, xmltodict, wrapt, wheel, werkzeug, websockets, wcwidth, urllib3, typing-extensions, traitlets, tornado, toml, termcolor, tensorboard-data-server, tabulate, soupsieve, smmap, six, setuptools, rpds-py, roman-numerals-py, pyzmq, pyyaml, python-dotenv, pygments, pyarrow, psutil, protobuf, platformdirs, pillow, pexpect, parso, opt-einsum, numpy, nest-asyncio2, mdurl, markdown, jsonpointer, jmespath, h11, greenlet, gast, executing, docutils, decorator, debugpy, comm, colorama, click, certifi, attrs, asttokens, appnope, annotated-types, absl-py, uvicorn, typing-inspection, stack-data, sqlalchemy, requests, referencing, python-dateutil, pydantic-core, prompt-toolkit, optree, ml-dtypes, matplotlib-inline, markdown-it-py, jupyter-core, jedi, ipython-pygments-lexers, importlib-metadata, h5py, grpcio, google-pasta, gitdb, beautifulsoup4, astunparse, anyio, accessible-pygments, watchfiles, tensorboard, starlette, sphinx-jsonschema, sphinx, rich, pydantic, mdit-py-plugins, jupyter-client, jsonschema-specifications, ipython, gitpython, botocore, sphinxext-opengraph, sphinxemoji, sphinx-remove-toctrees, sphinx-llms-txt, sphinx-last-updated-by-git, sphinx-docsearch, sphinx-design, sphinx-copybutton, sphinx-collections, sphinx-click, sphinx-autobuild, s3transfer, pydata-sphinx-theme, pydantic-settings, myst-parser, keras, jsonschema, ipykernel, tensorflow, sphinxcontrib-redoc, sphinx-sitemap, nbformat, boto3, autodoc-pydantic, tf-keras, nbclient, jupytext, jupyter-cache, myst-nb Attempting uninstall: wheel Found existing installation: wheel 0.40.0 Uninstalling wheel-0.40.0: Successfully uninstalled wheel-0.40.0 Attempting uninstall: urllib3 Found existing installation: urllib3 2.7.0 Uninstalling urllib3-2.7.0: Successfully uninstalled urllib3-2.7.0 Attempting uninstall: setuptools Found existing installation: setuptools 82.0.1 Uninstalling setuptools-82.0.1: Successfully uninstalled setuptools-82.0.1 Attempting uninstall: pygments Found existing installation: Pygments 2.20.0 Uninstalling Pygments-2.20.0: Successfully uninstalled Pygments-2.20.0 Attempting uninstall: docutils Found existing installation: docutils 0.22.4 Uninstalling docutils-0.22.4: Successfully uninstalled docutils-0.22.4 Attempting uninstall: certifi Found existing installation: certifi 2026.6.17 Uninstalling certifi-2026.6.17: Successfully uninstalled certifi-2026.6.17 Attempting uninstall: requests Found existing installation: requests 2.34.2 Uninstalling requests-2.34.2: Successfully uninstalled requests-2.34.2 Attempting uninstall: sphinx Found existing installation: Sphinx 9.0.4 Uninstalling Sphinx-9.0.4: Successfully uninstalled Sphinx-9.0.4 Successfully installed absl-py-2.4.0 accessible-pygments-0.0.5 annotated-types-0.7.0 anyio-4.13.0 appnope-0.1.4 asttokens-3.0.1 astunparse-1.6.3 attrs-26.1.0 autodoc-pydantic-2.2.0 beautifulsoup4-4.15.0 boto3-1.34.69 botocore-1.34.162 certifi-2026.5.20 click-8.1.7 colorama-0.4.6 comm-0.2.3 debugpy-1.8.21 decorator-5.3.1 docutils-0.21.2 executing-2.2.1 fastjsonschema-2.21.2 flatbuffers-25.12.19 gast-0.7.0 gitdb-4.0.12 gitpython-3.1.50 google-pasta-0.2.0 greenlet-3.5.1 grpcio-1.81.0 h11-0.16.0 h5py-3.16.0 importlib-metadata-9.0.0 ipykernel-7.3.0 ipython-9.14.1 ipython-pygments-lexers-1.1.1 jedi-0.20.0 jmespath-1.1.0 jsonpointer-3.1.1 jsonschema-4.26.0 jsonschema-specifications-2025.9.1 jupyter-cache-1.0.1 jupyter-client-8.9.1 jupyter-core-5.9.1 jupytext-1.15.2 keras-3.14.1 libclang-18.1.1 markdown-3.10.2 markdown-it-py-4.2.0 matplotlib-inline-0.2.2 mdit-py-plugins-0.6.1 mdurl-0.1.2 ml-dtypes-0.5.4 myst-nb-1.4.0 myst-parser-5.1.0 namex-0.1.0 nbclient-0.11.0 nbformat-5.10.4 nest-asyncio2-1.7.2 numpy-2.4.6 opt-einsum-3.4.0 optree-0.19.1 parso-0.8.7 pexpect-4.9.0 pillow-12.2.0 platformdirs-4.10.0 prompt-toolkit-3.0.52 protobuf-7.35.0 psutil-7.2.2 ptyprocess-0.7.0 pure-eval-0.2.3 pyarrow-19.0.1 pydantic-2.12.4 pydantic-core-2.41.5 pydantic-settings-2.14.1 pydata-sphinx-theme-0.18.0 pygments-2.18.0 python-dateutil-2.9.0.post0 python-dotenv-1.2.2 pyyaml-6.0.3 pyzmq-27.1.0 referencing-0.37.0 requests-2.32.5 rich-15.0.0 roman-numerals-py-4.1.0 rpds-py-2026.5.1 s3transfer-0.10.4 setuptools-80.9.0 six-1.17.0 smmap-5.0.3 soupsieve-2.8.4 sphinx-8.2.3 sphinx-autobuild-2024.4.16 sphinx-click-5.1.0 sphinx-collections-0.3.1 sphinx-copybutton-0.5.2 sphinx-design-0.7.0 sphinx-docsearch-0.3.0 sphinx-jsonschema-1.19.2 sphinx-last-updated-by-git-0.3.8 sphinx-llms-txt-0.7.1 sphinx-remove-toctrees-0.0.3 sphinx-sitemap-2.9.0 sphinxcontrib-redoc-1.6.0 sphinxemoji-0.3.2 sphinxext-opengraph-0.13.0 sqlalchemy-2.0.50 stack-data-0.6.3 starlette-1.2.1 tabulate-0.10.0 tensorboard-2.20.0 tensorboard-data-server-0.7.2 tensorflow-2.20.0 termcolor-3.3.0 tf-keras-2.20.1 toml-0.10.2 tornado-6.5.7 traitlets-5.15.1 typing-extensions-4.15.0 typing-inspection-0.4.2 urllib3-1.26.20 uvicorn-0.49.0 watchfiles-1.2.0 wcwidth-0.8.1 websockets-16.0 werkzeug-3.1.8 wheel-0.47.0 wrapt-2.2.1 xmltodict-0.13.0 zipp-4.1.0 [rtd-command-info] start-time: None, end-time: None, duration: None, exit-code: None if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then 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" else echo "Branch/tag build; running a full clean build." make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" fi