From a97abef845182f6a733e194a4df18986c52cae45 Mon Sep 17 00:00:00 2001 From: Andrew Sazonov Date: Wed, 13 May 2026 12:26:01 +0200 Subject: [PATCH] Add Python 3.14 support --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4dacc24..0c45689 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,9 @@ classifiers = [ 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', ] -requires-python = '>=3.11,<3.14' +requires-python = '>=3.11' dependencies = [] [project.optional-dependencies] @@ -179,7 +180,7 @@ select = [ 'S', # Security-related issues (e.g., use of insecure functions or libraries) 'SIM', # Simplification issues (e.g., redundant code, unnecessary constructs) 'SLF', # Self argument-related issues (e.g., missing or misused self) - 'T20', # Flake8-print-specific checks (e.g., print statements left in code) + 'T20', # Flake8-print-specific checks (e.g., print statements left in code) 'TCH', # Type checking issues (e.g., incompatible types, missing type annotations) 'TD', # Type definition issues (e.g., incorrect or missing type definitions) 'TID252', # Enforces absolute imports over relative imports