Skip to content

Commit

Permalink
Pin to isort 5
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Feb 11, 2025
1 parent 4a7dd93 commit 8d4fdeb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def test_otel(session):

@nox.session()
def format(session):
session.install(".", "black~=25.0", "isort", "flynt", "unasync>=0.6.0", "jinja2")
session.install(
".", "black~=25.0", "isort<6", "flynt", "unasync>=0.6.0", "jinja2"
)

session.run("python", "utils/run-unasync.py")
session.run("python", "utils/run-unasync-dsl.py")
Expand All @@ -90,7 +92,7 @@ def lint(session):
"flake8",
"black~=25.0",
"mypy",
"isort",
"isort<6",
"types-requests",
"types-python-dateutil",
"unasync>=0.6.0",
Expand Down

0 comments on commit 8d4fdeb

Please sign in to comment.