From fd580f290f20358e0c20c239db28b16c884908b5 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 28 Apr 2025 10:55:42 +0100 Subject: [PATCH] upd ruff settings --- ruff.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ruff.toml b/ruff.toml index a9a41b4..4ee25ec 100644 --- a/ruff.toml +++ b/ruff.toml @@ -5,6 +5,7 @@ exclude = [ ".eggs", ".git", ".git-rewrite", + ".hatch", ".hg", ".ipynb_checkpoints", ".mypy_cache", @@ -32,8 +33,8 @@ exclude = [ line-length = 88 indent-width = 4 -# Assume Python 3.9 -target-version = "py39" +# Assume Python 3.10 +target-version = "py310" [lint] # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.