From 7220d06b91c3edb89183129963db0a32235bdc24 Mon Sep 17 00:00:00 2001 From: "Paul S. Schweigert" Date: Thu, 19 Dec 2024 16:19:35 -0500 Subject: [PATCH] restrict python to versions 3.11 and 3.12 Signed-off-by: Paul S. Schweigert --- framework/bee-py/poetry.lock | 4 ++-- framework/bee-py/pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/bee-py/poetry.lock b/framework/bee-py/poetry.lock index 7e26345..8558dfa 100644 --- a/framework/bee-py/poetry.lock +++ b/framework/bee-py/poetry.lock @@ -2265,5 +2265,5 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" -python-versions = "^3.11" -content-hash = "a9f508f15fd00ed239073aa675b8e29e860081f6c859113318e2a88fd0bdb4e2" +python-versions = ">= 3.11, < 3.13" +content-hash = "6dd4de8bbac4017e5af991abcd6dbfbc482aaf2c8018a2e585908052da4f8b14" diff --git a/framework/bee-py/pyproject.toml b/framework/bee-py/pyproject.toml index 60a03b9..a64ab86 100644 --- a/framework/bee-py/pyproject.toml +++ b/framework/bee-py/pyproject.toml @@ -6,7 +6,7 @@ authors = ["IBM"] readme = "README.md" [tool.poetry.dependencies] -python = "^3.11" +python = ">= 3.11, < 3.13" pydantic = "^2.10" requests = "^2.32" pylint = "^3.3.2"