From 0cab5116b452a0b19b0e05c05269a837021f705f Mon Sep 17 00:00:00 2001 From: John Lyu Date: Fri, 21 Feb 2025 19:24:05 +0800 Subject: [PATCH] Use python >= 3.9 instead of ^3.9 See details at https://github.com/strawberry-graphql/strawberry/pull/3789 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 62587fa9d..27ebf6c1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ exclude = [ # Versions here the minimum required versions for the project. These should be as loose as possible. [tool.poetry.dependencies] -python = "^3.9" +python = ">=3.9" unidiff = ">=0.7.4" pytest = ">=7.0.0" gitpython = ">=3.1.31"