From 869b81cbf43f54d85573d90d2c3fa6d52709079b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 17:13:25 +0000 Subject: [PATCH 1/2] chore(deps): update dependency zensical to v0.0.38 --- pyproject.toml | 2 +- requirements/docs.requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1f3b2e7..1ada278 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dev = [ ] docs = [ "mkdocstrings[python]~=1.0.2", - "zensical==0.0.37", + "zensical==0.0.38", ] lint = [ "ruff>=0.15.0", diff --git a/requirements/docs.requirements.txt b/requirements/docs.requirements.txt index f959a76..87a212a 100644 --- a/requirements/docs.requirements.txt +++ b/requirements/docs.requirements.txt @@ -76,5 +76,5 @@ tomli==2.4.1 # via zensical watchdog==6.0.0 # via mkdocs -zensical==0.0.37 +zensical==0.0.38 # via python-backoff (pyproject.toml:docs) From 81a54c73578d522fd52ba455ab0e6140eb3f4f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Thu, 30 Apr 2026 11:17:42 -0600 Subject: [PATCH 2/2] docs: Build in strict mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Edgar Ramírez-Mondragón --- .readthedocs.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index aa9cb86..7fb2c9b 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -18,7 +18,7 @@ build: - UV_PROJECT_ENVIRONMENT="${READTHEDOCS_VIRTUALENV_PATH}" uv pip install . build: html: - - zensical build + - zensical build --strict post_build: - mkdir -p $READTHEDOCS_OUTPUT/html/ - cp --recursive site/* $READTHEDOCS_OUTPUT/html/ diff --git a/pyproject.toml b/pyproject.toml index 1ada278..c2ea7a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -140,7 +140,7 @@ commands = [ description = "build the documentation" deps = [ "-r ./requirements/docs.requirements.txt" ] commands = [ - [ "zensical", { replace = "posargs", default = [ "build" ], extend = true } ], + [ "zensical", { replace = "posargs", default = [ "build", "--strict" ], extend = true } ], ] [tool.pytest.ini_options]