Skip to content

Commit 209b602

Browse files
renovate[bot]alisonlhartshatakshiiii
authored
chore(deps): update all dependencies (#2062)
* chore(deps): update all dependencies * Use ignore_paths option instead of ignore in pyproject.toml --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: alisonlhart <[email protected]> Co-authored-by: Shatakshi Mishra <[email protected]>
1 parent 9d0bb6d commit 209b602

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default_language_version:
77
exclude: "(?x)^(\n _readthedocs|\n .tox\n)$\n"
88
repos:
99
- repo: https://github.com/renovatebot/pre-commit-hooks
10-
rev: 41.146.0
10+
rev: 41.157.1
1111
hooks:
1212
- id: renovate-config-validator
1313
alias: renovate
@@ -109,7 +109,7 @@ repos:
109109
alias: toml
110110

111111
- repo: https://github.com/astral-sh/ruff-pre-commit
112-
rev: v0.14.0
112+
rev: v0.14.1
113113
hooks:
114114
- id: ruff-format
115115
alias: ruff
@@ -132,7 +132,7 @@ repos:
132132
- types-setuptools
133133
- types-typed-ast
134134
- repo: https://github.com/pycqa/pylint.git
135-
rev: v3.3.9
135+
rev: v4.0.2
136136
hooks:
137137
- id: pylint
138138
args:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ preferred-modules = [
107107
[tool.pylint.master]
108108
# pylint defaults + fh for with open .. as (f|fh)
109109
good-names = "i,j,k,ex,Run,_,f,fh"
110-
ignore = [
111-
"_version.py", # built by setuptools_scm
112-
"tm_tokenize" # tm_tokenize is virtually vendored and shouldn't be linted as such
110+
ignore-paths = [
111+
"^.*_version\\.py$", # built by setuptools_scm
112+
"^.*tm_tokenize.*$" # tm_tokenize is virtually vendored and shouldn't be linted as such
113113
]
114114
jobs = 0
115115
max-args = 6 # default of 5 too low

src/ansible_navigator/utils/compatibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if sys.version_info >= (3, 11):
1212
from importlib.resources.abc import Traversable
1313
else:
14-
from importlib.abc import Traversable # pylint: disable=deprecated-class
14+
from importlib.abc import Traversable
1515

1616

1717
__all__ = ["Traversable", "TypeAlias", "importlib_metadata"]

0 commit comments

Comments
 (0)