You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ignore_* and skip_* options have been deprecated in 0.12.0, with warnings about their deprecation and replacements. We could completely remove them in a new minor release, since we are still using 0.x versioning scheme.
This would effectively remove the following options:
with replacements in [tool.deptry]:
ignore_misplaced-dev -> replaced with ignore = ["DEP004"]
ignore_missing -> replaced with ignore = ["DEP001"]
ignore_obsolete -> replaced with ignore = ["DEP002"]
ignore_transitive -> replaced with ignore = ["DEP003"]
ignore_unused -> replaced with ignore = ["DEP002"]
with replacements in [tool.deptry.per_rule_ignores]:
skip_misplaced_dev -> replaced with DEP004 = ["dep", ...]
skip_missing -> replaced with DEP001 = ["dep", ...]
skip_obsolete -> replaced with DEP002 = ["dep", ...]
skip_transitive -> replaced with DEP003 = ["dep", ...]
skip_unused -> replaced with DEP002 = ["dep", ...]
In order to facilitate the removal of those options, #571 would be really nice to have, as without it, removed options that are still set in [tool.poetry] will be ignored instead of raising an error.
The text was updated successfully, but these errors were encountered:
ignore_*
andskip_*
options have been deprecated in 0.12.0, with warnings about their deprecation and replacements. We could completely remove them in a new minor release, since we are still using 0.x versioning scheme.This would effectively remove the following options:
[tool.deptry]
:ignore_misplaced-dev
-> replaced withignore = ["DEP004"]
ignore_missing
-> replaced withignore = ["DEP001"]
ignore_obsolete
-> replaced withignore = ["DEP002"]
ignore_transitive
-> replaced withignore = ["DEP003"]
ignore_unused
-> replaced withignore = ["DEP002"]
[tool.deptry.per_rule_ignores]
:skip_misplaced_dev
-> replaced withDEP004 = ["dep", ...]
skip_missing
-> replaced withDEP001 = ["dep", ...]
skip_obsolete
-> replaced withDEP002 = ["dep", ...]
skip_transitive
-> replaced withDEP003 = ["dep", ...]
skip_unused
-> replaced withDEP002 = ["dep", ...]
In order to facilitate the removal of those options, #571 would be really nice to have, as without it, removed options that are still set in
[tool.poetry]
will be ignored instead of raising an error.The text was updated successfully, but these errors were encountered: