From 9be5aa188ce84f2cf8ce14ba50c480d3cd6ab99a Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Fri, 13 Feb 2026 19:39:09 +0100 Subject: [PATCH] chore(ruff): Update target Python version to 3.12 (#21405) Set the `target-version` in `ruff.toml` to Python 3.12. Ensures the linter aligns with the version used in the project's environment. Fixes #21404 --- ruff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruff.toml b/ruff.toml index fb463a4c0..38207b601 100644 --- a/ruff.toml +++ b/ruff.toml @@ -2,7 +2,7 @@ exclude = [ "netbox/project-static/**" ] line-length = 120 -target-version = "py310" +target-version = "py312" [lint] extend-select = ["E1", "E2", "E3", "E501", "W"]