From 447e63e262f2a8d2652d70b0b6e7fb126afaf221 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Mon, 13 Apr 2026 10:43:57 +0200 Subject: [PATCH 1/3] update cargo shear --- .github/workflows/cargo_shear.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cargo_shear.yml b/.github/workflows/cargo_shear.yml index bcbdf52..881dcd6 100644 --- a/.github/workflows/cargo_shear.yml +++ b/.github/workflows/cargo_shear.yml @@ -17,7 +17,7 @@ jobs: - name: Install Cargo Shear uses: taiki-e/install-action@v2.48.7 with: - tool: cargo-shear@1.1.11 + tool: cargo-shear@1.11.2 - name: Run Cargo Shear run: | From b5fe08376b813e2937c646b8ce155bf1877a0959 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 08:58:39 +0000 Subject: [PATCH 2/3] fix link checker: replace --base . with --root-dir . for lychee v0.23.0 compatibility Agent-Logs-Url: https://github.com/rerun-io/rerun_template/sessions/68d86023-102d-44d0-91b7-b75c4e2d87be Co-authored-by: Wumpf <1220815+Wumpf@users.noreply.github.com> --- .github/workflows/links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 8977861..ade82d3 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -30,4 +30,4 @@ jobs: fail: true # When given a directory, lychee checks only markdown, html and text files, everything else we have to glob in manually. args: | - --base . --cache --max-cache-age 1d . "**/*.rs" "**/*.toml" "**/*.hpp" "**/*.cpp" "**/CMakeLists.txt" "**/*.py" "**/*.yml" + --root-dir . --cache --max-cache-age 1d . "**/*.rs" "**/*.toml" "**/*.hpp" "**/*.cpp" "**/CMakeLists.txt" "**/*.py" "**/*.yml" From 3c5a1c3449e9f642cc73104e4e4eec43930c6eec Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 09:06:04 +0000 Subject: [PATCH 3/3] fix broken links in pixi.toml and pyproject.toml Agent-Logs-Url: https://github.com/rerun-io/rerun_template/sessions/885d94b1-f819-418c-8430-f26e86a196f0 Co-authored-by: Wumpf <1220815+Wumpf@users.noreply.github.com> --- pixi.toml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pixi.toml b/pixi.toml index 941366a..e4c1291 100644 --- a/pixi.toml +++ b/pixi.toml @@ -4,7 +4,7 @@ # Pixi is not required for rerun, but it is a convenient way to install the # dependencies required for this example. # -# https://prefix.dev/docs/pixi/overview +# https://pixi.sh/latest/ # # Use `pixi task list` to list the available tasks, # and `pixi run TASK` to run it (e.g. `pixi run example`). diff --git a/pyproject.toml b/pyproject.toml index df0390c..60864f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ lint.ignore = [ # No blank lines allowed after function docstring. "D202", - # npydocstyle: http://www.pydocstyle.org/en/stable/error_codes.html + # npydocstyle: https://docs.astral.sh/ruff/rules/#pydocstyle-d # numpy convention with a few additional lints "D107", "D203", @@ -69,7 +69,7 @@ lint.ignore = [ line-length = 120 lint.select = [ - "D", # pydocstyle codes https://www.pydocstyle.org/en/latest/error_codes.html + "D", # pydocstyle codes https://docs.astral.sh/ruff/rules/#pydocstyle-d "E", # pycodestyle error codes: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes "F", # Flake8 error codes https://flake8.pycqa.org/en/latest/user/error-codes.html "I", # Isort