From 8f23688c1d195e2558560d99616a51b477095f3f Mon Sep 17 00:00:00 2001 From: johnthagen Date: Mon, 28 Oct 2024 09:19:48 -0400 Subject: [PATCH] Update Ruff target-version to 3.9 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a5c4737..2f6abec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,8 @@ enable_error_code = ["explicit-override"] [tool.ruff] line-length = 99 -target-version = "py38" +# TODO: Remove this when migrating to [project] requires-python field. +target-version = "py39" src = ["src"] # Ruff will automatically exclude all files listed in .gitignore as well as common temporary Python # tool directories.