From cbc360570cbdbe7b9fb491386f4edfa1c8393c46 Mon Sep 17 00:00:00 2001 From: Tobias Klockau Date: Mon, 21 Oct 2024 16:44:05 +0200 Subject: [PATCH] fix: pipeline fail due to black versioning --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8e46039..e4b42b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ "jsonschema>=4.4.0", @@ -58,7 +59,7 @@ test = [ [tool.black] line-length = 100 -target-version = ["py38"] +target-version = ["py312"] force-exclude = "tests/" [tool.docformatter] @@ -75,7 +76,7 @@ no_implicit_optional = true show_error_codes = true warn_redundant_casts = true warn_unreachable = true -python_version = "3.8" +python_version = "3.12" [[tool.mypy.overrides]] module = ["tests.*"]