From 5fd8a9d66cbb8ea96f7b34e2fcf59643e25faf2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 11:48:53 +0000 Subject: [PATCH 1/2] Update isort requirement from <8,>=5 to >=5,<9 Updates the requirements on [isort](https://github.com/PyCQA/isort) to permit the latest version. - [Release notes](https://github.com/PyCQA/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyCQA/isort/compare/5.0.0...8.0.1) --- updated-dependencies: - dependency-name: isort dependency-version: 8.0.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5111ba864..30bc376d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ develop = [ "pytest-benchmark~=5.1", "pre-commit~=4.0", "ruff~=0.9", - "isort>=5,<8" + "isort>=5,<9" ] [tool.setuptools.packages.find] From f30e1bfc8dec9bed243420b4824f3c1baa9bdd0b Mon Sep 17 00:00:00 2001 From: misi9170 <39596329+misi9170@users.noreply.github.com> Date: Mon, 2 Mar 2026 14:55:55 -0700 Subject: [PATCH 2/2] Change isort hook stage from commit to pre-commit Avoids deprecation warning and works on isort 5 through 8 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7f4d4dc60..287fe9a83 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,4 +23,4 @@ repos: hooks: - id: isort name: isort - stages: [commit] + stages: [pre-commit]