From f29ec1eebaf6fa15d4cd13490b6191accb052155 Mon Sep 17 00:00:00 2001 From: Alan Crosswell Date: Tue, 16 Dec 2025 12:36:38 -0500 Subject: [PATCH 1/2] fix python version to allow 3.14.* (anything <3.15) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a9ade3b7a..18c62a249 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-oauth-toolkit" dynamic = ["version"] -requires-python = ">=3.8,<=3.14" +requires-python = ">=3.8,<3.15" authors = [ {name = "Federico Frenguelli"}, {name = "Massimiliano Pippi"}, From 7dac1c2218ebc2a48c3fc3a09127948d2e70f049 Mon Sep 17 00:00:00 2001 From: Alan Crosswell Date: Wed, 17 Dec 2025 09:33:41 -0500 Subject: [PATCH 2/2] Don't set upper bound required python version Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 18c62a249..b48c0a2ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-oauth-toolkit" dynamic = ["version"] -requires-python = ">=3.8,<3.15" +requires-python = ">=3.8" authors = [ {name = "Federico Frenguelli"}, {name = "Massimiliano Pippi"},