From 05d8fec37971a70c5c7b434fcc5e3c598fa3a6c6 Mon Sep 17 00:00:00 2001 From: Mirko Lenz Date: Wed, 8 Nov 2023 14:52:25 +0100 Subject: [PATCH] chore: bump ruff target version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3d2135f..0d91de7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ doctest_optionflags = "NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS" [tool.ruff] # https://docs.astral.sh/ruff/rules/ -target-version = "py39" +target-version = "py310" select = ["B", "E", "F", "W"] ignore = ["E501"]