From e45711d8687a48f21cdc3cba7ffd8317a32d0f2d Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Pelayo Date: Fri, 5 Dec 2025 08:52:33 +0100 Subject: [PATCH] python: downgrade to python 3.11 Keeping the requirement to 3.13 makes it incompatible with our current plans to use it from https://jumpstarter.dev, see [1]. i.e. current ubuntu LTS: 3.12, fedora 42 already ships 3.13, centos10 ships python 3.12 [1] https://github.com/jumpstarter-dev/jumpstarter/pull/771 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d818ad7..47cbc55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ authors = [ ] readme = "README.md" license = {text = "Apache-2.0"} -requires-python = ">=3.13" +requires-python = ">=3.11" dependencies = [ "aiohttp", "cryptography",