Skip to content

Commit eca14aa

Browse files
authored
Merge branch 'main' into feat/add-path-option
2 parents 100bb9a + 85796be commit eca14aa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939
- name: Install the latest version of uv
40-
uses: astral-sh/setup-uv@v3
40+
uses: astral-sh/setup-uv@v4
4141
with:
4242
enable-cache: true
4343
cache-dependency-glob: "pyproject.toml"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
- name: Install the latest version of uv
17-
uses: astral-sh/setup-uv@v3
17+
uses: astral-sh/setup-uv@v4
1818
with:
1919
enable-cache: true
2020
cache-dependency-glob: "pyproject.toml"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: pyproject-fmt
2626
- repo: https://github.com/astral-sh/ruff-pre-commit
27-
rev: "v0.7.3"
27+
rev: "v0.7.4"
2828
hooks:
2929
- id: ruff-format
3030
- id: ruff

src/pipdeptree/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from pipdeptree._warning import WarningPrinter, WarningType, get_warning_printer
1515

1616

17-
def main(args: Sequence[str] | None = None) -> None | int:
17+
def main(args: Sequence[str] | None = None) -> int | None:
1818
"""CLI - The main function called as entry point."""
1919
options = get_options(args)
2020

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_parser_svg() -> None:
7070
(False, [], float("inf")),
7171
],
7272
)
73-
def test_parser_depth(should_be_error: bool, depth_arg: list[str], expected_value: None | float) -> None:
73+
def test_parser_depth(should_be_error: bool, depth_arg: list[str], expected_value: float | None) -> None:
7474
parser = build_parser()
7575

7676
if should_be_error:

0 commit comments

Comments
 (0)