From 5621d6ab0e7e08aae45922a372219bcf29d2660a Mon Sep 17 00:00:00 2001 From: Fatih Acar Date: Thu, 27 Feb 2025 21:45:28 +0100 Subject: [PATCH] fix: build for python 3.13 Signed-off-by: Fatih Acar --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index a43ab5f0..e8420ac4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2207,5 +2207,5 @@ tests = ["Jinja2", "pytest", "pyyaml", "rich"] [metadata] lock-version = "2.0" -python-versions = "^3.9, <=3.13" -content-hash = "bbd7280cdf6fab3001d339f4b12d01b0883008905d1a0c3f9010eafdaec5b15f" +python-versions = "^3.9, <3.14" +content-hash = "eecc46f7563f6f1057281f72c3877abd859d96c63493b221d10d3910e25b3b34" diff --git a/pyproject.toml b/pyproject.toml index c905a307..0652436a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.9, <=3.13" +python = "^3.9, <3.14" pydantic = ">=2.0.0,!=2.0.1,!=2.1.0,<3.0.0" pydantic-settings = ">=2.0" graphql-core = ">=3.1,<3.3"