From a8f843e2dbfbfb16c81d5b55c13b6f0770bcfdb2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 16 Nov 2024 18:52:36 +0100 Subject: [PATCH] chore: Updates Python requirement to >=3.11 Lowers the minimum required Python version from 3.12 to 3.11 to support environments that haven't upgraded yet. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3abf5de..b80dacf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] description = "A Django app for allowing users to register for a Synapse account." readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.12" +requires-python = ">=3.11" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",