From 059b83f10cdb9481439eee0095f4e1a86d742ab2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 14:29:02 +0000 Subject: [PATCH 1/2] Bump the test group with 2 updates Updates the requirements on [attrs](https://github.com/sponsors/hynek) and [importlib-metadata](https://github.com/python/importlib_metadata) to permit the latest version. Updates `attrs` from 22.1.0 to 25.4.0 - [Commits](https://github.com/sponsors/hynek/commits) Updates `importlib-metadata` to 8.7.1 - [Release notes](https://github.com/python/importlib_metadata/releases) - [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst) - [Commits](https://github.com/python/importlib_metadata/compare/0.1...v8.7.1) --- updated-dependencies: - dependency-name: attrs dependency-version: 25.4.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: test - dependency-name: importlib-metadata dependency-version: 8.7.1 dependency-type: direct:development dependency-group: test ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1915d94449..8cb1cc23ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,8 +45,8 @@ dev = [ ] test = [ # temporary pin of attrs - "attrs==22.1.0", - "importlib-metadata<5.0", + "attrs==25.4.0", + "importlib-metadata<9.0", # Pytest for running the tests. "pytest==9.*", From d72323c40e9254102dd3856b98785fb64e6bc0f4 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sat, 7 Feb 2026 13:17:44 +0000 Subject: [PATCH 2/2] Remove attrs pin as it should no longer be needed --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0e2edda1e..502f640bb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,8 +44,6 @@ dev = [ { include-group = "test" }, ] test = [ - # temporary pin of attrs - "attrs==25.4.0", "importlib-metadata<9.0", # Pytest for running the tests.