Skip to content

Commit 8ca8587

Browse files
authored
chore(deps): upgrade ruff to 0.14.0 (#816)
1 parent 3b49d55 commit 8ca8587

File tree

5 files changed

+24
-26
lines changed

5 files changed

+24
-26
lines changed

mergify_cli/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import importlib.metadata
1919

20-
import rich
2120
import rich.console
2221

2322

mergify_cli/ci/junit_processing/junit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def files_to_spans(
4545
spans.extend(
4646
await junit_to_spans(
4747
run_id,
48-
pathlib.Path(filename).read_bytes(),
48+
pathlib.Path(filename).read_bytes(), # noqa: ASYNC240
4949
test_language=test_language,
5050
test_framework=test_framework,
5151
),

mergify_cli/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import sys
2121

2222
import click
23-
import click.decorators
2423
import click_default_group
2524

2625
from mergify_cli import VERSION

poetry.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pydantic = "^2.11.9"
3333
[tool.poetry.group.dev.dependencies]
3434
mypy = {version = ">=0.930"}
3535
mypy-extensions = "^1.0.0"
36-
ruff = "0.13.1"
36+
ruff = "0.14.0"
3737
pytest = {version = ">=6.2.5"}
3838
poethepoet = ">=0.21,<0.38"
3939
pytest-asyncio = ">=0.23.2,<1.3.0"

0 commit comments

Comments
 (0)