From 74ed0e0b1164daa3ad67421f0ff2273110e5c67a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 03:38:34 +0000 Subject: [PATCH 1/2] Bump ruff from 0.0.287 to 0.0.290 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.287 to 0.0.290. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.287...v0.0.290) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... 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 e779429a0..f19c932fd 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,7 +7,7 @@ -r docs/requirements-docs.txt coveralls==3.3.1 -ruff==0.0.287 +ruff==0.0.290 mypy==1.5.1 pre-commit==3.4.0 pytest==7.4.2 From 3f85f3cce68cf777fb2f31ead2e106ee33ec4d54 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 18 Sep 2023 07:08:08 +0200 Subject: [PATCH 2/2] Exclude UP036 for now --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 40c0e2005..c0123e219 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,8 @@ ignore = ["freqtrade/vendor/**"] line-length = 100 extend-exclude = [".env", ".venv"] target-version = "py38" +# Exclude UP036 as it's causing the "exit if < 3.9" to fail. +extend-ignore = [ "UP036" ] extend-select = [ "C90", # mccabe # "N", # pep8-naming