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
1 change: 0 additions & 1 deletion mergify_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import importlib.metadata

import rich
import rich.console


Expand Down
2 changes: 1 addition & 1 deletion mergify_cli/ci/junit_processing/junit.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def files_to_spans(
spans.extend(
await junit_to_spans(
run_id,
pathlib.Path(filename).read_bytes(),
pathlib.Path(filename).read_bytes(), # noqa: ASYNC240
test_language=test_language,
test_framework=test_framework,
),
Expand Down
1 change: 0 additions & 1 deletion mergify_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import sys

import click
import click.decorators
import click_default_group

from mergify_cli import VERSION
Expand Down
44 changes: 22 additions & 22 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pydantic = "^2.11.9"
[tool.poetry.group.dev.dependencies]
mypy = {version = ">=0.930"}
mypy-extensions = "^1.0.0"
ruff = "0.13.1"
ruff = "0.14.0"
pytest = {version = ">=6.2.5"}
poethepoet = ">=0.21,<0.38"
pytest-asyncio = ">=0.23.2,<1.3.0"
Expand Down