From bd94b3f3a799e244a54ec08fd10ad2578f3d630c Mon Sep 17 00:00:00 2001 From: konstantin Date: Sun, 4 May 2025 13:00:00 +0200 Subject: [PATCH] chore: explicitly specify supported Python versions in black configuration --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a17a0eb..a7a04e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,9 @@ dev = [ "mypy>=1.15.0" ] +[tool.black] +target_version = ["py310", "py311", "py312", "py313"] + [project.urls] Documentation = "https://pydifact.readthedocs.io" Repository = "https://github.com/nerdocs/pydifact"