From 7d835617335a424aab1989687d13fa164b4c3913 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 10:34:21 +0100 Subject: [PATCH] chore(deps): update ruff requirement from <0.2,>=0.1.5 to >=0.1.5,<0.3 (#167) * chore(deps): update ruff requirement from <0.2,>=0.1.5 to >=0.1.5,<0.3 Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version. - [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/v0.1.5...v0.2.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore: adapt config to ruff 0.2.0 Signed-off-by: Luka Peschke --------- Signed-off-by: dependabot[bot] Signed-off-by: Luka Peschke Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luka Peschke --- pyproject.toml | 2 ++ test-requirements.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 55430ee..119f06b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,5 +44,7 @@ testpaths = [ [tool.ruff] line-length = 100 target-version = "py38" + +[tool.ruff.lint] # Enable Pyflakes `E` and `F` codes by default. select = ["E", "F", "I", "Q", "FA102"] diff --git a/test-requirements.txt b/test-requirements.txt index f42b747..7885f66 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -3,5 +3,5 @@ openpyxl>=3.1.2<4 pre-commit>=2.20.0,<4 pytest>=7.1.3 pytest-benchmark>=4.0.0,<5 -ruff>=0.1.5,<0.2 +ruff>=0.2.0,<0.3 xlrd>=2.0.1<3