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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.36.1
rev: 0.36.2
hooks:
- id: check-github-workflows
args: ["--verbose"]
Expand All @@ -15,15 +15,15 @@ repos:
- id: codespell
additional_dependencies: ["tomli>=2.3"]
- repo: https://github.com/tox-dev/tox-toml-fmt
rev: "v1.5.2"
rev: "v1.6.0"
hooks:
- id: tox-toml-fmt
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.14.2"
rev: "v2.16.0"
hooks:
- id: pyproject-fmt
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.0"
rev: "v0.15.1"
hooks:
- id: ruff-format
- id: ruff-check
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,18 @@ ignore-words-list = "master"
max_supported_python = "3.14"

[tool.coverage]
html.show_contexts = true
html.skip_covered = false
run.parallel = true
run.plugins = [
"covdefaults",
]
paths.source = [
"src",
".tox/*/lib/python*/site-packages",
"*/src",
]
run.parallel = true
run.plugins = [
"covdefaults",
]
report.fail_under = 88
html.show_contexts = true
html.skip_covered = false
subtract_omit = "*/__main__.py"

[tool.mypy]
Expand Down
6 changes: 3 additions & 3 deletions src/pipdeptree/_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from pathlib import Path
from typing import TYPE_CHECKING, Any

from pip._internal.models.direct_url import (
DirectUrl, # noqa: PLC2701
DirectUrlValidationError, # noqa: PLC2701
from pip._internal.models.direct_url import ( # noqa: PLC2701
DirectUrl,
DirectUrlValidationError,
)
from pip._internal.utils.egg_link import egg_link_path_from_sys_path # noqa: PLC2701
from pip._vendor.packaging.version import Version # noqa: PLC2701
Expand Down