From 102c33d68b2425169c9a4eb6bfff0ccacd54c633 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 05:41:30 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump ruff from 0.11.13 to 0.12.0 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.11.13 to 0.12.0. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.11.13...0.12.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.12.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 7a2ff1256..f55f51937 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,7 +6,7 @@ -r requirements-freqai-rl.txt -r docs/requirements-docs.txt -ruff==0.11.13 +ruff==0.12.0 mypy==1.16.1 pre-commit==4.2.0 pytest==8.4.1 From 420369342805851573d0d038937a3699d100e30e Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 23 Jun 2025 15:01:59 +0200 Subject: [PATCH 2/2] chore: Ruf ignore extension --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 9b783789d..eb626ac81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -290,6 +290,7 @@ extend-ignore = [ "RUF010", # Use explicit conversion flag "RUF012", # mutable-class-default "RUF022", # unsorted-dunder-all + "RUF005", # list concatenation ] [tool.ruff.lint.mccabe]