diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5657323..c50a753 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,7 +24,7 @@ repos: - id: prospector-to-ruff additional_dependencies: - prospector-profile-duplicated==1.10.5 # pypi - - prospector-profile-utils==1.26.2 # pypi + - prospector-profile-utils==1.26.3 # pypi args: - --test=utils:tests - repo: https://github.com/codespell-project/codespell @@ -77,7 +77,7 @@ repos: - --profile=.prospector.yaml additional_dependencies: - prospector-profile-duplicated==1.10.5 # pypi - - prospector-profile-utils==1.26.2 # pypi + - prospector-profile-utils==1.26.3 # pypi - ruff==0.12.7 # pypi - pylint[spelling]==3.3.7 # pypi exclude: |- @@ -96,7 +96,7 @@ repos: - --profile=utils:tests - --profile=utils:pre-commit additional_dependencies: - - prospector-profile-utils==1.26.2 # pypi + - prospector-profile-utils==1.26.3 # pypi - ruff==0.12.7 # pypi - repo: https://github.com/renovatebot/pre-commit-hooks rev: 41.43.0 diff --git a/poetry.lock b/poetry.lock index 2afb64c..003b564 100644 --- a/poetry.lock +++ b/poetry.lock @@ -697,14 +697,14 @@ prospector = ">=1.15.0" [[package]] name = "prospector-profile-utils" -version = "1.26.2" +version = "1.26.3" description = "Some utility Prospector profiles." optional = false python-versions = "*" groups = ["dev"] files = [ - {file = "prospector_profile_utils-1.26.2-py2.py3-none-any.whl", hash = "sha256:7b57eb14666a9e4df6a10a2ac6feea02fff6c69d9b4c2e2b85e76848fa16412f"}, - {file = "prospector_profile_utils-1.26.2.tar.gz", hash = "sha256:78830cc4ebb8f94a487f3afa03a5ba17dab06d8477ce61395b4de28d1a0d63c7"}, + {file = "prospector_profile_utils-1.26.3-py2.py3-none-any.whl", hash = "sha256:802006af114f7e6b709d18e3229770cf76201932a7c6c1dfe779d96d9a14866d"}, + {file = "prospector_profile_utils-1.26.3.tar.gz", hash = "sha256:073a02dcd9d9c9cb59564a4233ad70f5a82b35702c4d95adeebff5abdc6d2bff"}, ] [package.dependencies] @@ -1360,4 +1360,4 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.1" python-versions = ">=3.11,<4.0" -content-hash = "05df0f81d5a7b98d2bddb67be6e03987ab933d3934f41c9a4ce9fdeef168190f" +content-hash = "7d13387574fdc6c7e4384fc212d206987dbfb7edb42fffc8bf1d3a79fb766536" diff --git a/pyproject.toml b/pyproject.toml index 684179a..ab82901 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,10 +11,10 @@ extend-select = ["UP", "I", "S", "B", "ALL"] convention = "numpy" [tool.ruff.lint.extend-per-file-ignores] -"tests/**" = ["ANN", "ARG", "D", "E722", "INP001", "RET", "RUF012", "RUF100", "SLF"] -"**/tests/**" = ["ANN", "ARG", "D", "E722", "INP001", "RET", "RUF012", "RUF100", "SLF"] -"**/test_*.py" = ["ANN", "ARG", "D", "E722", "INP001", "RET", "RUF012", "RUF100", "SLF"] -"**/*_test.py" = ["ANN", "ARG", "D", "E722", "INP001", "RET", "RUF012", "RUF100", "SLF"] +"tests/**" = ["ANN", "ARG", "ASYNC", "D", "E722", "FBT003", "INP001", "N", "PLC0415", "PLR2004", "RET", "RUF012", "RUF100", "S108", "S113", "S603", "S607", "SLF"] +"**/tests/**" = ["ANN", "ARG", "ASYNC", "D", "E722", "FBT003", "INP001", "N", "PLC0415", "PLR2004", "RET", "RUF012", "RUF100", "S108", "S113", "S603", "S607", "SLF"] +"**/test_*.py" = ["ANN", "ARG", "ASYNC", "D", "E722", "FBT003", "INP001", "N", "PLC0415", "PLR2004", "RET", "RUF012", "RUF100", "S108", "S113", "S603", "S607", "SLF"] +"**/*_test.py" = ["ANN", "ARG", "ASYNC", "D", "E722", "FBT003", "INP001", "N", "PLC0415", "PLR2004", "RET", "RUF012", "RUF100", "S108", "S113", "S603", "S607", "SLF"] [tool.poetry] version = "0.0.0" @@ -37,7 +37,7 @@ jinja2 = "3.1.6" [tool.poetry.group.dev.dependencies] prospector = { version = "1.17.3", extras = ["with_bandit", "with_mypy", "with_pyroma", "with_ruff"] } -prospector-profile-utils = "1.26.2" +prospector-profile-utils = "1.26.3" prospector-profile-duplicated = "1.10.5" pytest = "8.4.1" types-docutils = "0.21.0.20250604"