Skip to content

Index of out range in CIHandler.commit_count() #379

@BalsamLawson

Description

@BalsamLawson

I'm trying to build a mkdocs-matertial site from a git repo. mkdocs build works fine locally but when attempting to deploy via a Cloudflare worker I get an index out of range exception in the ci.py file. Inrefs = [x.split()[0] for x in refs] I believe x.split() must be returning an empty array causing the indexing [0] to fail. I don't trust my python skills enough to fix but seems like there needs to be some sort of bounds checking here. Please reply if anyone knows a workaround. Thank you!

2025-08-21T18:00:45.809Z Initializing build environment...
2025-08-21T18:00:53.021Z Success: Finished initializing build environment
2025-08-21T18:00:53.229Z Cloning repository...
2025-08-21T18:00:54.925Z No build output detected to cache. Skipping.
2025-08-21T18:00:54.925Z No dependencies detected to cache. Skipping.
2025-08-21T18:00:54.926Z Detected the following tools from environment:
2025-08-21T18:00:54.928Z Installing project dependencies: pip install -r requirements.txt
2025-08-21T18:00:56.023Z Collecting mkdocs-material (from -r requirements.txt (line 1))
2025-08-21T18:00:56.058Z Downloading mkdocs_material-9.6.17-py3-none-any.whl.metadata (19 kB)
2025-08-21T18:00:56.248Z Collecting mkdocs-rss-plugin (from -r requirements.txt (line 2))
2025-08-21T18:00:56.251Z Downloading mkdocs_rss_plugin-1.17.3-py2.py3-none-any.whl.metadata (7.8 kB)
2025-08-21T18:00:56.439Z Collecting mkdocs-glightbox (from -r requirements.txt (line 3))
2025-08-21T18:00:56.443Z Downloading mkdocs_glightbox-0.4.0-py3-none-any.whl.metadata (6.1 kB)
2025-08-21T18:00:56.458Z Collecting babel~=2.10 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.461Z Downloading babel-2.17.0-py3-none-any.whl.metadata (2.0 kB)
2025-08-21T18:00:56.647Z Collecting backrefs~=5.7.post1 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.650Z Downloading backrefs-5.9-py313-none-any.whl.metadata (3.2 kB)
2025-08-21T18:00:56.654Z Requirement already satisfied: click<8.2.2 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs-material->-r requirements.txt (line 1)) (8.2.1)
2025-08-21T18:00:56.668Z Collecting colorama~=0.4 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.672Z Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
2025-08-21T18:00:56.690Z Collecting jinja2~=3.1 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.693Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
2025-08-21T18:00:56.715Z Collecting markdown~=3.2 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.719Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB)
2025-08-21T18:00:56.897Z Collecting mkdocs-material-extensions~=1.3 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.901Z Downloading mkdocs_material_extensions-1.3.1-py3-none-any.whl.metadata (6.9 kB)
2025-08-21T18:00:57.084Z Collecting mkdocs~=1.6 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.088Z Downloading mkdocs-1.6.1-py3-none-any.whl.metadata (6.0 kB)
2025-08-21T18:00:57.269Z Collecting paginate~=0.5 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.273Z Downloading paginate-0.5.7-py2.py3-none-any.whl.metadata (11 kB)
2025-08-21T18:00:57.293Z Collecting pygments~=2.16 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.296Z Downloading pygments-2.19.2-py3-none-any.whl.metadata (2.5 kB)
2025-08-21T18:00:57.321Z Collecting pymdown-extensions~=10.2 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.325Z Downloading pymdown_extensions-10.16.1-py3-none-any.whl.metadata (3.1 kB)
2025-08-21T18:00:57.353Z Collecting requests~=2.26 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.356Z Downloading requests-2.32.5-py3-none-any.whl.metadata (4.9 kB)
2025-08-21T18:00:57.420Z Collecting MarkupSafe>=2.0 (from jinja2~=3.1->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.423Z Downloading MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB)
2025-08-21T18:00:57.613Z Collecting ghp-import>=1.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.617Z Downloading ghp_import-2.1.0-py3-none-any.whl.metadata (7.2 kB)
2025-08-21T18:00:57.639Z Collecting mergedeep>=1.3.4 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.642Z Downloading mergedeep-1.3.4-py3-none-any.whl.metadata (4.3 kB)
2025-08-21T18:00:57.821Z Collecting mkdocs-get-deps>=0.2.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.825Z Downloading mkdocs_get_deps-0.2.0-py3-none-any.whl.metadata (4.0 kB)
2025-08-21T18:00:57.828Z Requirement already satisfied: packaging>=20.5 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1)) (25.0)
2025-08-21T18:00:57.837Z Collecting pathspec>=0.11.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.842Z Downloading pathspec-0.12.1-py3-none-any.whl.metadata (21 kB)
2025-08-21T18:00:58.025Z Collecting pyyaml-env-tag>=0.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.029Z Downloading pyyaml_env_tag-1.1-py3-none-any.whl.metadata (5.5 kB)
2025-08-21T18:00:58.062Z Collecting pyyaml>=5.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.065Z Downloading PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)
2025-08-21T18:00:58.121Z Collecting watchdog>=2.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.125Z Downloading watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl.metadata (44 kB)
2025-08-21T18:00:58.213Z Collecting charset_normalizer<4,>=2 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.221Z Using cached charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (36 kB)
2025-08-21T18:00:58.241Z Collecting idna<4,>=2.5 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.243Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB)
2025-08-21T18:00:58.265Z Collecting urllib3<3,>=1.21.1 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.267Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB)
2025-08-21T18:00:58.284Z Collecting certifi>=2017.4.17 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.288Z Using cached certifi-2025.8.3-py3-none-any.whl.metadata (2.4 kB)
2025-08-21T18:00:58.468Z Collecting cachecontrol<1,>=0.14 (from cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:00:58.469Z Using cached cachecontrol-0.14.3-py3-none-any.whl.metadata (3.1 kB)
2025-08-21T18:00:58.495Z Collecting GitPython<3.2,>=3.1.43 (from mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:00:58.503Z Downloading gitpython-3.1.45-py3-none-any.whl.metadata (13 kB)
2025-08-21T18:01:00.254Z Collecting msgpack<2.0.0,>=0.5.2 (from cachecontrol<1,>=0.14->cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.256Z Using cached msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB)
2025-08-21T18:01:00.275Z Collecting filelock>=3.8.0 (from cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.277Z Using cached filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB)
2025-08-21T18:01:00.288Z Collecting gitdb<5,>=4.0.1 (from GitPython<3.2,>=3.1.43->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.291Z Downloading gitdb-4.0.12-py3-none-any.whl.metadata (1.2 kB)
2025-08-21T18:01:00.303Z Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython<3.2,>=3.1.43->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.306Z Downloading smmap-5.0.2-py3-none-any.whl.metadata (4.3 kB)
2025-08-21T18:01:00.501Z Collecting cairosvg~=2.6 (from mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.503Z Downloading cairosvg-2.8.2-py3-none-any.whl.metadata (2.7 kB)
2025-08-21T18:01:00.683Z Collecting pillow~=10.2 (from mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.687Z Downloading pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
2025-08-21T18:01:00.868Z Collecting cairocffi (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.872Z Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB)
2025-08-21T18:01:00.884Z Collecting cssselect2 (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.887Z Downloading cssselect2-0.8.0-py3-none-any.whl.metadata (2.9 kB)
2025-08-21T18:01:00.898Z Collecting defusedxml (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.901Z Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
2025-08-21T18:01:00.913Z Collecting tinycss2 (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.916Z Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB)
2025-08-21T18:01:00.932Z Collecting python-dateutil>=2.8.1 (from ghp-import>=1.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:01:00.936Z Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
2025-08-21T18:01:00.942Z Requirement already satisfied: platformdirs>=2.2.0 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs-get-deps>=0.2.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1)) (4.3.8)
2025-08-21T18:01:00.970Z Collecting six>=1.5 (from python-dateutil>=2.8.1->ghp-import>=1.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:01:00.974Z Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
2025-08-21T18:01:01.071Z Collecting cffi>=1.1.0 (from cairocffi->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.073Z Using cached cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
2025-08-21T18:01:01.083Z Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.084Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
2025-08-21T18:01:01.093Z Collecting webencodings (from cssselect2->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.098Z Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
2025-08-21T18:01:01.117Z Downloading mkdocs_material-9.6.17-py3-none-any.whl (9.2 MB)
2025-08-21T18:01:01.193Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/9.2 MB 125.7 MB/s 0:00:00
2025-08-21T18:01:01.196Z Downloading babel-2.17.0-py3-none-any.whl (10.2 MB)
2025-08-21T18:01:01.284Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 117.3 MB/s 0:00:00
2025-08-21T18:01:01.289Z Downloading backrefs-5.9-py313-none-any.whl (399 kB)
2025-08-21T18:01:01.297Z Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
2025-08-21T18:01:01.302Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
2025-08-21T18:01:01.307Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB)
2025-08-21T18:01:01.314Z Downloading mkdocs-1.6.1-py3-none-any.whl (3.9 MB)
2025-08-21T18:01:01.348Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/3.9 MB 118.5 MB/s 0:00:00
2025-08-21T18:01:01.352Z Downloading mkdocs_material_extensions-1.3.1-py3-none-any.whl (8.7 kB)
2025-08-21T18:01:01.358Z Downloading paginate-0.5.7-py2.py3-none-any.whl (13 kB)
2025-08-21T18:01:01.364Z Downloading pygments-2.19.2-py3-none-any.whl (1.2 MB)
2025-08-21T18:01:01.378Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 133.4 MB/s 0:00:00
2025-08-21T18:01:01.385Z Downloading pymdown_extensions-10.16.1-py3-none-any.whl (266 kB)
2025-08-21T18:01:01.393Z Downloading requests-2.32.5-py3-none-any.whl (64 kB)
2025-08-21T18:01:01.397Z Using cached charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (151 kB)
2025-08-21T18:01:01.400Z Using cached idna-3.10-py3-none-any.whl (70 kB)
2025-08-21T18:01:01.403Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB)
2025-08-21T18:01:01.581Z Downloading mkdocs_rss_plugin-1.17.3-py2.py3-none-any.whl (30 kB)
2025-08-21T18:01:01.585Z Using cached cachecontrol-0.14.3-py3-none-any.whl (21 kB)
2025-08-21T18:01:01.589Z Downloading gitpython-3.1.45-py3-none-any.whl (208 kB)
2025-08-21T18:01:01.595Z Downloading gitdb-4.0.12-py3-none-any.whl (62 kB)
2025-08-21T18:01:01.599Z Using cached msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423 kB)
2025-08-21T18:01:01.605Z Downloading smmap-5.0.2-py3-none-any.whl (24 kB)
2025-08-21T18:01:01.611Z Downloading mkdocs_glightbox-0.4.0-py3-none-any.whl (31 kB)
2025-08-21T18:01:01.617Z Downloading cairosvg-2.8.2-py3-none-any.whl (45 kB)
2025-08-21T18:01:01.622Z Downloading pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (4.5 MB)
2025-08-21T18:01:01.680Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 81.0 MB/s 0:00:00
2025-08-21T18:01:01.681Z Using cached certifi-2025.8.3-py3-none-any.whl (161 kB)
2025-08-21T18:01:01.685Z Using cached filelock-3.19.1-py3-none-any.whl (15 kB)
2025-08-21T18:01:01.690Z Downloading ghp_import-2.1.0-py3-none-any.whl (11 kB)
2025-08-21T18:01:01.696Z Downloading MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB)
2025-08-21T18:01:01.702Z Downloading mergedeep-1.3.4-py3-none-any.whl (6.4 kB)
2025-08-21T18:01:01.708Z Downloading mkdocs_get_deps-0.2.0-py3-none-any.whl (9.5 kB)
2025-08-21T18:01:01.714Z Downloading pathspec-0.12.1-py3-none-any.whl (31 kB)
2025-08-21T18:01:01.721Z Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
2025-08-21T18:01:01.728Z Downloading PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759 kB)
2025-08-21T18:01:01.738Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 759.5/759.5 kB 78.7 MB/s 0:00:00
2025-08-21T18:01:01.744Z Downloading pyyaml_env_tag-1.1-py3-none-any.whl (4.7 kB)
2025-08-21T18:01:01.749Z Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
2025-08-21T18:01:01.756Z Downloading watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl (79 kB)
2025-08-21T18:01:01.762Z Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB)
2025-08-21T18:01:01.767Z Using cached cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479 kB)
2025-08-21T18:01:01.774Z Downloading cssselect2-0.8.0-py3-none-any.whl (15 kB)
2025-08-21T18:01:01.780Z Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
2025-08-21T18:01:01.783Z Using cached pycparser-2.22-py3-none-any.whl (117 kB)
2025-08-21T18:01:01.788Z Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB)
2025-08-21T18:01:01.794Z Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
2025-08-21T18:01:02.100Z Installing collected packages: webencodings, paginate, mkdocs-glightbox, watchdog, urllib3, tinycss2, smmap, six, pyyaml, pygments, pycparser, pillow, pathspec, msgpack, mkdocs-material-extensions, mergedeep, MarkupSafe, markdown, idna, filelock, defusedxml, colorama, charset_normalizer, certifi, backrefs, babel, requests, pyyaml-env-tag, python-dateutil, pymdown-extensions, mkdocs-get-deps, jinja2, gitdb, cssselect2, cffi, GitPython, ghp-import, cairocffi, cachecontrol, mkdocs, cairosvg, mkdocs-rss-plugin, mkdocs-material
2025-08-21T18:01:07.869Z
2025-08-21T18:01:07.873Z Successfully installed GitPython-3.1.45 MarkupSafe-3.0.2 babel-2.17.0 backrefs-5.9 cachecontrol-0.14.3 cairocffi-1.7.1 cairosvg-2.8.2 certifi-2025.8.3 cffi-1.17.1 charset_normalizer-3.4.3 colorama-0.4.6 cssselect2-0.8.0 defusedxml-0.7.1 filelock-3.19.1 ghp-import-2.1.0 gitdb-4.0.12 idna-3.10 jinja2-3.1.6 markdown-3.8.2 mergedeep-1.3.4 mkdocs-1.6.1 mkdocs-get-deps-0.2.0 mkdocs-glightbox-0.4.0 mkdocs-material-9.6.17 mkdocs-material-extensions-1.3.1 mkdocs-rss-plugin-1.17.3 msgpack-1.1.1 paginate-0.5.7 pathspec-0.12.1 pillow-10.4.0 pycparser-2.22 pygments-2.19.2 pymdown-extensions-10.16.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 pyyaml-env-tag-1.1 requests-2.32.5 six-1.17.0 smmap-5.0.2 tinycss2-1.4.0 urllib3-2.5.0 watchdog-6.0.0 webencodings-0.5.1
2025-08-21T18:01:08.009Z Reshimming asdf python...
2025-08-21T18:01:08.686Z Executing user build command: mkdocs build
2025-08-21T18:00:45.809Z Initializing build environment...
2025-08-21T18:00:53.021Z Success: Finished initializing build environment
2025-08-21T18:00:53.229Z Cloning repository...
2025-08-21T18:00:54.925Z No build output detected to cache. Skipping.
2025-08-21T18:00:54.925Z No dependencies detected to cache. Skipping.
2025-08-21T18:00:54.926Z Detected the following tools from environment:
2025-08-21T18:00:54.928Z Installing project dependencies: pip install -r requirements.txt
2025-08-21T18:00:56.023Z Collecting mkdocs-material (from -r requirements.txt (line 1))
2025-08-21T18:00:56.058Z Downloading mkdocs_material-9.6.17-py3-none-any.whl.metadata (19 kB)
2025-08-21T18:00:56.248Z Collecting mkdocs-rss-plugin (from -r requirements.txt (line 2))
2025-08-21T18:00:56.251Z Downloading mkdocs_rss_plugin-1.17.3-py2.py3-none-any.whl.metadata (7.8 kB)
2025-08-21T18:00:56.439Z Collecting mkdocs-glightbox (from -r requirements.txt (line 3))
2025-08-21T18:00:56.443Z Downloading mkdocs_glightbox-0.4.0-py3-none-any.whl.metadata (6.1 kB)
2025-08-21T18:00:56.458Z Collecting babel~=2.10 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.461Z Downloading babel-2.17.0-py3-none-any.whl.metadata (2.0 kB)
2025-08-21T18:00:56.647Z Collecting backrefs~=5.7.post1 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.650Z Downloading backrefs-5.9-py313-none-any.whl.metadata (3.2 kB)
2025-08-21T18:00:56.654Z Requirement already satisfied: click<8.2.2 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs-material->-r requirements.txt (line 1)) (8.2.1)
2025-08-21T18:00:56.668Z Collecting colorama~=0.4 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.672Z Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
2025-08-21T18:00:56.690Z Collecting jinja2~=3.1 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.693Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
2025-08-21T18:00:56.715Z Collecting markdown~=3.2 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.719Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB)
2025-08-21T18:00:56.897Z Collecting mkdocs-material-extensions~=1.3 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:56.901Z Downloading mkdocs_material_extensions-1.3.1-py3-none-any.whl.metadata (6.9 kB)
2025-08-21T18:00:57.084Z Collecting mkdocs~=1.6 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.088Z Downloading mkdocs-1.6.1-py3-none-any.whl.metadata (6.0 kB)
2025-08-21T18:00:57.269Z Collecting paginate~=0.5 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.273Z Downloading paginate-0.5.7-py2.py3-none-any.whl.metadata (11 kB)
2025-08-21T18:00:57.293Z Collecting pygments~=2.16 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.296Z Downloading pygments-2.19.2-py3-none-any.whl.metadata (2.5 kB)
2025-08-21T18:00:57.321Z Collecting pymdown-extensions~=10.2 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.325Z Downloading pymdown_extensions-10.16.1-py3-none-any.whl.metadata (3.1 kB)
2025-08-21T18:00:57.353Z Collecting requests~=2.26 (from mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.356Z Downloading requests-2.32.5-py3-none-any.whl.metadata (4.9 kB)
2025-08-21T18:00:57.420Z Collecting MarkupSafe>=2.0 (from jinja2~=3.1->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.423Z Downloading MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB)
2025-08-21T18:00:57.613Z Collecting ghp-import>=1.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.617Z Downloading ghp_import-2.1.0-py3-none-any.whl.metadata (7.2 kB)
2025-08-21T18:00:57.639Z Collecting mergedeep>=1.3.4 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.642Z Downloading mergedeep-1.3.4-py3-none-any.whl.metadata (4.3 kB)
2025-08-21T18:00:57.821Z Collecting mkdocs-get-deps>=0.2.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.825Z Downloading mkdocs_get_deps-0.2.0-py3-none-any.whl.metadata (4.0 kB)
2025-08-21T18:00:57.828Z Requirement already satisfied: packaging>=20.5 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1)) (25.0)
2025-08-21T18:00:57.837Z Collecting pathspec>=0.11.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:57.842Z Downloading pathspec-0.12.1-py3-none-any.whl.metadata (21 kB)
2025-08-21T18:00:58.025Z Collecting pyyaml-env-tag>=0.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.029Z Downloading pyyaml_env_tag-1.1-py3-none-any.whl.metadata (5.5 kB)
2025-08-21T18:00:58.062Z Collecting pyyaml>=5.1 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.065Z Downloading PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)
2025-08-21T18:00:58.121Z Collecting watchdog>=2.0 (from mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.125Z Downloading watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl.metadata (44 kB)
2025-08-21T18:00:58.213Z Collecting charset_normalizer<4,>=2 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.221Z Using cached charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (36 kB)
2025-08-21T18:00:58.241Z Collecting idna<4,>=2.5 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.243Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB)
2025-08-21T18:00:58.265Z Collecting urllib3<3,>=1.21.1 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.267Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB)
2025-08-21T18:00:58.284Z Collecting certifi>=2017.4.17 (from requests~=2.26->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:00:58.288Z Using cached certifi-2025.8.3-py3-none-any.whl.metadata (2.4 kB)
2025-08-21T18:00:58.468Z Collecting cachecontrol<1,>=0.14 (from cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:00:58.469Z Using cached cachecontrol-0.14.3-py3-none-any.whl.metadata (3.1 kB)
2025-08-21T18:00:58.495Z Collecting GitPython<3.2,>=3.1.43 (from mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:00:58.503Z Downloading gitpython-3.1.45-py3-none-any.whl.metadata (13 kB)
2025-08-21T18:01:00.254Z Collecting msgpack<2.0.0,>=0.5.2 (from cachecontrol<1,>=0.14->cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.256Z Using cached msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB)
2025-08-21T18:01:00.275Z Collecting filelock>=3.8.0 (from cachecontrol[filecache]<1,>=0.14->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.277Z Using cached filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB)
2025-08-21T18:01:00.288Z Collecting gitdb<5,>=4.0.1 (from GitPython<3.2,>=3.1.43->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.291Z Downloading gitdb-4.0.12-py3-none-any.whl.metadata (1.2 kB)
2025-08-21T18:01:00.303Z Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython<3.2,>=3.1.43->mkdocs-rss-plugin->-r requirements.txt (line 2))
2025-08-21T18:01:00.306Z Downloading smmap-5.0.2-py3-none-any.whl.metadata (4.3 kB)
2025-08-21T18:01:00.501Z Collecting cairosvg~=2.6 (from mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.503Z Downloading cairosvg-2.8.2-py3-none-any.whl.metadata (2.7 kB)
2025-08-21T18:01:00.683Z Collecting pillow~=10.2 (from mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.687Z Downloading pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
2025-08-21T18:01:00.868Z Collecting cairocffi (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.872Z Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB)
2025-08-21T18:01:00.884Z Collecting cssselect2 (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.887Z Downloading cssselect2-0.8.0-py3-none-any.whl.metadata (2.9 kB)
2025-08-21T18:01:00.898Z Collecting defusedxml (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.901Z Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
2025-08-21T18:01:00.913Z Collecting tinycss2 (from cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:00.916Z Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB)
2025-08-21T18:01:00.932Z Collecting python-dateutil>=2.8.1 (from ghp-import>=1.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:01:00.936Z Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
2025-08-21T18:01:00.942Z Requirement already satisfied: platformdirs>=2.2.0 in /opt/buildhome/.local/lib/python3.13/site-packages (from mkdocs-get-deps>=0.2.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1)) (4.3.8)
2025-08-21T18:01:00.970Z Collecting six>=1.5 (from python-dateutil>=2.8.1->ghp-import>=1.0->mkdocs~=1.6->mkdocs-material->-r requirements.txt (line 1))
2025-08-21T18:01:00.974Z Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
2025-08-21T18:01:01.071Z Collecting cffi>=1.1.0 (from cairocffi->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.073Z Using cached cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
2025-08-21T18:01:01.083Z Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.084Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
2025-08-21T18:01:01.093Z Collecting webencodings (from cssselect2->cairosvg~=2.6->mkdocs-material[imaging]->-r requirements.txt (line 4))
2025-08-21T18:01:01.098Z Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
2025-08-21T18:01:01.117Z Downloading mkdocs_material-9.6.17-py3-none-any.whl (9.2 MB)
2025-08-21T18:01:01.193Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/9.2 MB 125.7 MB/s 0:00:00
2025-08-21T18:01:01.196Z Downloading babel-2.17.0-py3-none-any.whl (10.2 MB)
2025-08-21T18:01:01.284Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 117.3 MB/s 0:00:00
2025-08-21T18:01:01.289Z Downloading backrefs-5.9-py313-none-any.whl (399 kB)
2025-08-21T18:01:01.297Z Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
2025-08-21T18:01:01.302Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
2025-08-21T18:01:01.307Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB)
2025-08-21T18:01:01.314Z Downloading mkdocs-1.6.1-py3-none-any.whl (3.9 MB)
2025-08-21T18:01:01.348Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/3.9 MB 118.5 MB/s 0:00:00
2025-08-21T18:01:01.352Z Downloading mkdocs_material_extensions-1.3.1-py3-none-any.whl (8.7 kB)
2025-08-21T18:01:01.358Z Downloading paginate-0.5.7-py2.py3-none-any.whl (13 kB)
2025-08-21T18:01:01.364Z Downloading pygments-2.19.2-py3-none-any.whl (1.2 MB)
2025-08-21T18:01:01.378Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 133.4 MB/s 0:00:00
2025-08-21T18:01:01.385Z Downloading pymdown_extensions-10.16.1-py3-none-any.whl (266 kB)
2025-08-21T18:01:01.393Z Downloading requests-2.32.5-py3-none-any.whl (64 kB)
2025-08-21T18:01:01.397Z Using cached charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (151 kB)
2025-08-21T18:01:01.400Z Using cached idna-3.10-py3-none-any.whl (70 kB)
2025-08-21T18:01:01.403Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB)
2025-08-21T18:01:01.581Z Downloading mkdocs_rss_plugin-1.17.3-py2.py3-none-any.whl (30 kB)
2025-08-21T18:01:01.585Z Using cached cachecontrol-0.14.3-py3-none-any.whl (21 kB)
2025-08-21T18:01:01.589Z Downloading gitpython-3.1.45-py3-none-any.whl (208 kB)
2025-08-21T18:01:01.595Z Downloading gitdb-4.0.12-py3-none-any.whl (62 kB)
2025-08-21T18:01:01.599Z Using cached msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423 kB)
2025-08-21T18:01:01.605Z Downloading smmap-5.0.2-py3-none-any.whl (24 kB)
2025-08-21T18:01:01.611Z Downloading mkdocs_glightbox-0.4.0-py3-none-any.whl (31 kB)
2025-08-21T18:01:01.617Z Downloading cairosvg-2.8.2-py3-none-any.whl (45 kB)
2025-08-21T18:01:01.622Z Downloading pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (4.5 MB)
2025-08-21T18:01:01.680Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 81.0 MB/s 0:00:00
2025-08-21T18:01:01.681Z Using cached certifi-2025.8.3-py3-none-any.whl (161 kB)
2025-08-21T18:01:01.685Z Using cached filelock-3.19.1-py3-none-any.whl (15 kB)
2025-08-21T18:01:01.690Z Downloading ghp_import-2.1.0-py3-none-any.whl (11 kB)
2025-08-21T18:01:01.696Z Downloading MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB)
2025-08-21T18:01:01.702Z Downloading mergedeep-1.3.4-py3-none-any.whl (6.4 kB)
2025-08-21T18:01:01.708Z Downloading mkdocs_get_deps-0.2.0-py3-none-any.whl (9.5 kB)
2025-08-21T18:01:01.714Z Downloading pathspec-0.12.1-py3-none-any.whl (31 kB)
2025-08-21T18:01:01.721Z Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
2025-08-21T18:01:01.728Z Downloading PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (759 kB)
2025-08-21T18:01:01.738Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 759.5/759.5 kB 78.7 MB/s 0:00:00
2025-08-21T18:01:01.744Z Downloading pyyaml_env_tag-1.1-py3-none-any.whl (4.7 kB)
2025-08-21T18:01:01.749Z Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
2025-08-21T18:01:01.756Z Downloading watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl (79 kB)
2025-08-21T18:01:01.762Z Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB)
2025-08-21T18:01:01.767Z Using cached cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479 kB)
2025-08-21T18:01:01.774Z Downloading cssselect2-0.8.0-py3-none-any.whl (15 kB)
2025-08-21T18:01:01.780Z Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
2025-08-21T18:01:01.783Z Using cached pycparser-2.22-py3-none-any.whl (117 kB)
2025-08-21T18:01:01.788Z Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB)
2025-08-21T18:01:01.794Z Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
2025-08-21T18:01:02.100Z Installing collected packages: webencodings, paginate, mkdocs-glightbox, watchdog, urllib3, tinycss2, smmap, six, pyyaml, pygments, pycparser, pillow, pathspec, msgpack, mkdocs-material-extensions, mergedeep, MarkupSafe, markdown, idna, filelock, defusedxml, colorama, charset_normalizer, certifi, backrefs, babel, requests, pyyaml-env-tag, python-dateutil, pymdown-extensions, mkdocs-get-deps, jinja2, gitdb, cssselect2, cffi, GitPython, ghp-import, cairocffi, cachecontrol, mkdocs, cairosvg, mkdocs-rss-plugin, mkdocs-material
2025-08-21T18:01:07.869Z
2025-08-21T18:01:07.873Z Successfully installed GitPython-3.1.45 MarkupSafe-3.0.2 babel-2.17.0 backrefs-5.9 cachecontrol-0.14.3 cairocffi-1.7.1 cairosvg-2.8.2 certifi-2025.8.3 cffi-1.17.1 charset_normalizer-3.4.3 colorama-0.4.6 cssselect2-0.8.0 defusedxml-0.7.1 filelock-3.19.1 ghp-import-2.1.0 gitdb-4.0.12 idna-3.10 jinja2-3.1.6 markdown-3.8.2 mergedeep-1.3.4 mkdocs-1.6.1 mkdocs-get-deps-0.2.0 mkdocs-glightbox-0.4.0 mkdocs-material-9.6.17 mkdocs-material-extensions-1.3.1 mkdocs-rss-plugin-1.17.3 msgpack-1.1.1 paginate-0.5.7 pathspec-0.12.1 pillow-10.4.0 pycparser-2.22 pygments-2.19.2 pymdown-extensions-10.16.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 pyyaml-env-tag-1.1 requests-2.32.5 six-1.17.0 smmap-5.0.2 tinycss2-1.4.0 urllib3-2.5.0 watchdog-6.0.0 webencodings-0.5.1
2025-08-21T18:01:08.009Z Reshimming asdf python...
2025-08-21T18:01:08.686Z Executing user build command: mkdocs build
2025-08-21T18:01:12.671Z Traceback (most recent call last):
2025-08-21T18:01:12.672Z File "/opt/buildhome/.asdf/installs/python/3.13.3/bin/mkdocs", line 7, in
2025-08-21T18:01:12.672Z sys.exit(cli())
2025-08-21T18:01:12.672Z ~~~^^
2025-08-21T18:01:12.672Z File "/opt/buildhome/.local/lib/python3.13/site-packages/click/core.py", line 1442, in call
2025-08-21T18:01:12.672Z return self.main(*args, **kwargs)
2025-08-21T18:01:12.672Z ~~~~~~~~~^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.672Z File "/opt/buildhome/.local/lib/python3.13/site-packages/click/core.py", line 1363, in main
2025-08-21T18:01:12.672Z rv = self.invoke(ctx)
2025-08-21T18:01:12.674Z File "/opt/buildhome/.local/lib/python3.13/site-packages/click/core.py", line 1830, in invoke
2025-08-21T18:01:12.674Z return _process_result(sub_ctx.command.invoke(sub_ctx))
2025-08-21T18:01:12.674Z ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
2025-08-21T18:01:12.674Z File "/opt/buildhome/.local/lib/python3.13/site-packages/click/core.py", line 1226, in invoke
2025-08-21T18:01:12.674Z return ctx.invoke(self.callback, **ctx.params)
2025-08-21T18:01:12.674Z ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.674Z File "/opt/buildhome/.local/lib/python3.13/site-packages/click/core.py", line 794, in invoke
2025-08-21T18:01:12.674Z return callback(*args, **kwargs)
2025-08-21T18:01:12.674Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs/main.py", line 288, in build_command
2025-08-21T18:01:12.675Z build.build(cfg, dirty=not clean)
2025-08-21T18:01:12.675Z ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.675Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs/commands/build.py", line 265, in build
2025-08-21T18:01:12.675Z config = config.plugins.on_config(config)
2025-08-21T18:01:12.675Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs/plugins.py", line 587, in on_config
2025-08-21T18:01:12.675Z return self.run_event('config', config)
2025-08-21T18:01:12.675Z ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.675Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs/plugins.py", line 566, in run_event
2025-08-21T18:01:12.675Z result = method(item, **kwargs)
2025-08-21T18:01:12.675Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs_rss_plugin/plugin.py", line 138, in on_config
2025-08-21T18:01:12.675Z self.util = Util(
2025-08-21T18:01:12.675Z ~~~~^
2025-08-21T18:01:12.675Z cache_dir=self.cache_dir,
2025-08-21T18:01:12.675Z ^^^^^^^^^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.676Z ...<3 lines>...
2025-08-21T18:01:12.676Z mkdocs_command_is_on_serve=self.cmd_is_serve,
2025-08-21T18:01:12.676Z ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-08-21T18:01:12.676Z )
2025-08-21T18:01:12.676Z ^
2025-08-21T18:01:12.676Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs_rss_plugin/util.py", line 125, in init
2025-08-21T18:01:12.677Z CiHandler(git_repo.git).raise_ci_warnings()
2025-08-21T18:01:12.677Z ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
2025-08-21T18:01:12.677Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs_rss_plugin/git_manager/ci.py", line 45, in raise_ci_warnings
2025-08-21T18:01:12.677Z n_commits = self.commit_count()
2025-08-21T18:01:12.677Z File "/opt/buildhome/.asdf/installs/python/3.13.3/lib/python3.13/site-packages/mkdocs_rss_plugin/git_manager/ci.py", line 104, in commit_count
2025-08-21T18:01:12.677Z refs = [x.split()[0] for x in refs]
2025-08-21T18:01:12.677Z ~~~~~~~~~^^^
2025-08-21T18:01:12.677Z IndexError: list index out of range
2025-08-21T18:01:12.727Z Failed: error occurred while running build command

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions