From 66b4620ea633a65bfddb9b854886f042197023c6 Mon Sep 17 00:00:00 2001 From: Samuel Lampa Date: Thu, 25 Apr 2024 12:20:32 +0200 Subject: [PATCH] Update the lowest python version to 3.11 to include StrEnum StrEnum is used in multiple places including tests and alembic scripts and was introduced in Python 3.11 See https://docs.python.org/3/library/enum.html#enum.StrEnum --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b4bb5c33d9..6334f950b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ include = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.13" +python = ">=3.11,<3.13" # Database alembic = "*"