Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down
1 change: 1 addition & 0 deletions python_typing_update/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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