From 588f5fe91acf4edfd3f30b401766ef34f7493793 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 05:02:50 +0000 Subject: [PATCH 1/3] Bump isort from 8.0.1 to 9.0.1 Bumps [isort](https://github.com/PyCQA/isort) from 8.0.1 to 9.0.1. - [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/8.0.1...9.0.1) --- updated-dependencies: - dependency-name: isort dependency-version: 9.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 90f76fe..6007ba6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ requires-python = ">=3.10" dependencies = [ "aiofiles==25.1.0", "autoflake==2.3.3", - "isort==8.0.1", + "isort==9.0.1", "pyupgrade==3.21.2", "reorder-python-imports==3.17.0", ] diff --git a/requirements.txt b/requirements.txt index cf52994..a26165f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ aiofiles==25.1.0 autoflake==2.3.3 -isort==8.0.1 +isort==9.0.1 pyupgrade==3.21.2 reorder-python-imports==3.17.0 From d0451596a63d775b70c721caa826affc2d273e85 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 31 Aug 2026 10:39:59 +0200 Subject: [PATCH 2/3] Update .pre-commit-config.yaml --- .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 9c60500..fcb40ef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: files: ^(python_typing_update|script|tests)/.+\.py$ exclude: *fixtures - repo: https://github.com/PyCQA/isort - rev: 8.0.1 + rev: 9.0.1 hooks: - id: isort exclude: *fixtures From bb33f892d0a42d8fdd9cae1990c0d708fa81e8ae Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 31 Aug 2026 10:55:42 +0200 Subject: [PATCH 3/3] Add ignore --- python_typing_update/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_typing_update/main.py b/python_typing_update/main.py index b0068b8..c8afd0e 100644 --- a/python_typing_update/main.py +++ b/python_typing_update/main.py @@ -14,6 +14,7 @@ import aiofiles from autoflake import _main as autoflake_main +# pylint: disable-next=no-name-in-module from isort.main import main as isort_main from pyupgrade._main import main as pyupgrade_main import reorder_python_imports