From d113204872fbe214c0e2428656e7f1231bd25cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelo=20Elizeche=20Land=C3=B3?= Date: Tue, 9 Dec 2025 20:21:04 -0300 Subject: [PATCH] packages/ak-guardian: bump python requirement to 3.14 (#18711) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit packages/ak-guardian: bump python to 3.14 Signed-off-by: Marcelo Elizeche Landó --- packages/ak-guardian/pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/ak-guardian/pyproject.toml b/packages/ak-guardian/pyproject.toml index 5e13b9664b..a47369f400 100644 --- a/packages/ak-guardian/pyproject.toml +++ b/packages/ak-guardian/pyproject.toml @@ -2,7 +2,7 @@ name = "ak-guardian" version = "3.2.0" description = "Model and object permissions for Django" -requires-python = ">=3.9,<3.14" +requires-python = ">=3.9,<3.15" readme = "README.md" license = { text = "BSD-2-Clause" } authors = [{ name = "Authentik Security Inc.", email = "hello@goauthentik.io" }] @@ -28,13 +28,14 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", 'Topic :: Security', ] dependencies = [ "django>=5.2,<6.0", - "typing_extensions>=4.12.0; python_version<'3.13'", + "typing_extensions>=4.12.0; python_version<'3.15'", ] [project.urls]