From 3bf4c60510c923056893b9239543845efadb12e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 18:45:56 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump the python-minor-patch group with 2 updates Bumps the python-minor-patch group with 2 updates: [ruff](https://github.com/astral-sh/ruff) and [mypy](https://github.com/python/mypy). Updates `ruff` from 0.16.3 to 0.16.4 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.16.3...0.16.4) Updates `mypy` from 2.3.0 to 2.3.1 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v2.3.0...v2.3.1) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-minor-patch - dependency-name: mypy dependency-version: 2.3.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-minor-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 81528ef5..d1cc7c7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,8 +65,8 @@ dev = [ # NOTE: black/mypy require Python >= 3.10 (dev tooling only; the library # floor stays 3.9). "black==26.5.1", - "ruff==0.16.3", - "mypy==2.3.0", + "ruff==0.16.4", + "mypy==2.3.1", "maturin>=1.4,<2.0", "matplotlib>=3.5", "nbmake>=1.5", From 102161035a6482d63b6a8bebe2c18d7dd02da8a9 Mon Sep 17 00:00:00 2001 From: igerber Date: Thu, 27 Aug 2026 14:10:15 -0400 Subject: [PATCH 2/2] ci: sync lint.yml tool pins with pyproject (ruff 0.16.4, mypy 2.3.1) --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f1804475..af386103 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,7 +39,7 @@ jobs: with: python-version: '3.14' - name: Install pinned linters (keep in sync with pyproject [dev]) - run: pip install ruff==0.16.3 black==26.5.1 + run: pip install ruff==0.16.4 black==26.5.1 - name: Ruff run: ruff check diff_diff tests - name: Black @@ -60,7 +60,7 @@ jobs: # The package itself is NOT installed (mypy analyzes source directly; # no maturin/Rust build ever enters this workflow). - name: Install mypy + runtime deps for their type stubs (pinned) - run: pip install mypy==2.3.0 numpy==2.4.5 pandas==3.0.3 scipy==1.17.1 + run: pip install mypy==2.3.1 numpy==2.4.5 pandas==3.0.3 scipy==1.17.1 - name: Mypy run: mypy diff_diff