Skip to content

Commit 64bff6a

Browse files
CI(deps): Update ruff to v0.9.10 (#5327)
* CI(deps): Update ruff to v0.9.10 * style: Ignore new Ruff rule unused-unpacked-variable (RUF059) --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Edouard Choinière <[email protected]>
1 parent db431fe commit 64bff6a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/python-code-quality.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# renovate: datasource=pypi depName=bandit
3737
BANDIT_VERSION: "1.8.3"
3838
# renovate: datasource=pypi depName=ruff
39-
RUFF_VERSION: "0.9.9"
39+
RUFF_VERSION: "0.9.10"
4040

4141
runs-on: ${{ matrix.os }}
4242
permissions:

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repos:
3838
)
3939
- repo: https://github.com/astral-sh/ruff-pre-commit
4040
# Ruff version.
41-
rev: v0.9.9
41+
rev: v0.9.10
4242
hooks:
4343
# Run the linter.
4444
- id: ruff

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ ignore = [
233233
"RUF012", # mutable-class-default
234234
"RUF015", # unnecessary-iterable-allocation-for-first-element
235235
"RUF019", # unnecessary-key-check
236+
"RUF059", # unused-unpacked-variable
236237
"RUF100", # unused-noqa
237238
"S101", # assert
238239
"S108", # hardcoded-temp-file

0 commit comments

Comments
 (0)